用戶表
CREATE TABLE `users` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`username` varchar(20) DEFAULT NULL,
`password` varchar(20) DEFAULT NULL,
`photo` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
圖片下載表
CREATE TABLE `files` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`name` varchar(20) DEFAULT NULL,
`count` int(10) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
導入Spring springmvc 等Java包
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" id="WebApp_ID" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<welcome-file-list>
<welcome-file>jsp/register.jsp</welcome-file>
</welcome-file-list>
<!--上下文參數(shù)-->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
<!--監(jiān)聽器-->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!--前端控制器springmvc-->
<servlet>
<servlet-name>springmvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!--初始化參數(shù)設(shè)置Springmvc的文件位置-->
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:springmvc.xml</param-value>
</init-param>
<!--自啟動-->
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springmvc</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<!--字符編碼過濾器-->
<filter>
<filter-name>encoding</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>utf-8</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>encoding</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
applicationContext.xml(Spring環(huán)境搭建)
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd" default-autowire="byName">
<!--注解掃描-->
<context:component-scan base-package="com.wq.service.impl"> </context:component-scan>
<!--加載屬性文件-->
<context:property-placeholder location="classpath:db.properties"/>
<!--數(shù)據(jù)源-->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="${jdbc.driver}"> </property>
<property name="url" value="${jdbc.url}"> </property>
<property name="username" value="${jdbc.username}"> </property>
<property name="password" value="${jdbc.password}"> </property>
</bean>
<!--SqlSessionFactory-->
<bean id="factory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"> </property>
<property name="typeAliasesPackage" value="com.wq.pojo"> </property>
</bean>
<!--掃描器-->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.wq.mapper"> </property>
<property name="sqlSessionFactoryBeanName" value="factory"> </property>
</bean>
<!--事物管理器-->
<bean class="org.springframework.jdbc.datasource.DataSourceTransactionManager" id="txManage">
<property name="dataSource" ref="dataSource"> </property>
</bean>
<!--聲明事物-->
<tx:advice id="txAdvice" transaction-manager="txManage">
<tx:attributes>
<tx:method name="ins*"/>
<tx:method name="del*"/>
<tx:method name="upd*" isolation="REPEATABLE_READ"/>
<tx:method name="*" read-only="true"/>
</tx:attributes>
</tx:advice>
<!--配置aop-->
<aop:config>
<aop:pointcut id="mypoint" expression="execution(* com.wq.service.impl.*.*(..))"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="mypoint"/>
</aop:config>
</beans>
springmvc.xml配置
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<!-- 掃描直接,只掃描controller包 -->
<context:component-scan base-package="com.wq.controller"> </context:component-scan>
<!--注解驅(qū)動,注冊HandlerMapping和HandlerAdapter-->
<!--設(shè)置靜態(tài)資源-->
<mvc:annotation-driven> </mvc:annotation-driven>
<mvc:resources mapping="/js/**" location="/js/"> </mvc:resources>
<mvc:resources mapping="/jsp/**" location="/jsp/"> </mvc:resources>
<mvc:resources mapping="/images/**" location="/images/"> </mvc:resources>
<mvc:resources mapping="/files/**" location="/files/"> </mvc:resources>
<!--視圖解析器-->
<bean id="viewResolver2" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/"/>
<property name="suffix" value=".jsp"> </property>
</bean>
<!--MultipartResolver解析器-->
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<!--只要聲明出解析器就行了-->
<!--如果要限制文件大小-->
<property name="maxUploadSize" value="500000"> </property>
</bean>
<!--異常解析器-->
<bean id="exceptionResolver" class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
<property name="exceptionMappings">
<props >
<prop key="org.springframework.web.multipart.MaxUploadSizeExceededException">jsp/error</prop>
</props>
</property>
</bean>
</beans>
數(shù)據(jù)庫配置連接文件
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/ssm
jdbc.username=root
jdbc.password=******
log4j配置文件
log4j.rootCategory=INFO, CONSOLE,LOGFILE
log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
log4j.appender.CONSOLE.layout.ConversionPattern=%m %n
log4j.appender.syslog.encoding=UTF-8
log4j.appender.A1=org.apache.log4j.RollingFileAppender
log4j.appender.A1.Encoding=UTF-8
log4j.appender.A1.File=all.log
log4j.appender.LOGFILE=org.apache.log4j.FileAppender
log4j.appender.LOGFILE.File=D:/axis.log
log4j.appender.LOGFILE.Append=true
log4j.appender.LOGFILE.layout=org.apache.log4j.PatternLayout
log4j.appender.LOGFILE.layout.ConversionPattern=-%p-%d{yyyy/MM/dd HH:mm:ss,SSS}-%l-%L-%m %n
Java實體類:
package com.wq.pojo;
public class Users {
private int id;
private String username;
private String password;
private String photo;
public int getId() {
return id;
}
public void setId(int id) {
this.id=id;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username=username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password=password;
}
public String getPhoto() {
return photo;
}
public void setPhoto(String photo) {
this.photo=photo;
}
}
package com.wq.pojo;
public class Files {
private int id;
private String name;
private int count;
public int getId() {
return id;
}
public void setId(int id) {
this.id=id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name=name;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count=count;
}
}
package com.wq.mapper;
import com.wq.pojo.Files;
import org.apache.ibatis.annotations.Select;
import org.apache.ibatis.annotations.Update;
import java.util.List;
public interface FliesMapper {
@Select("select * from files")
List<Files>selAll();
@Update("update files set count=count+1 where id=#{0}")
int updCountById(int id);
}
package com.wq.mapper;
import com.wq.pojo.Users;
import org.apache.ibatis.annotations.Insert;
public interface UsersMapper {
@Insert("insert into users values (default,#{username},#{password},#{photo})")
int insUser(Users users);
}
接口
package com.wq.service;
import com.wq.pojo.Users;
public interface UsersService {
int insRegister(Users users);
}
package com.wq.service;
import com.wq.pojo.Files;
import com.wq.pojo.Users;
import java.util.List;
public interface FilesService {
/*
* 顯示全部下載資源
* */
List<Files> show();
/**
*
* @param 根據(jù)id修改下載次數(shù)
* @return id
*/
int updCount(int id , Users users, String name);
}
實現(xiàn)類
package com.wq.service.impl;
import com.wq.mapper.FliesMapper;
import com.wq.pojo.Files;
import com.wq.pojo.Users;
import com.wq.service.FilesService;
import org.apache.log4j.Logger;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.List;
@Service
public class FilesServiceImpl implements FilesService {
@Resource
private FliesMapper fliesMapper;
@Override
public List<Files> show() {
return fliesMapper.selAll();
}
@Override
public int updCount(int id , Users users,String name) {
Logger logger=Logger.getLogger(FilesServiceImpl.class);
logger.info(users.getUsername()+"下載了"+name);
return fliesMapper.updCountById(id);
}
}
package com.wq.service.impl;
import com.wq.mapper.UsersMapper;
import com.wq.pojo.Users;
import com.wq.service.UsersService;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
@Service
public class UsersServiceImpl implements UsersService {
@Resource
private UsersMapper usersMapper;
@Override
public int insRegister(Users users) {
return usersMapper.insUser(users);
}
}
package com.wq.controller;
import com.wq.pojo.Users;
import com.wq.service.FilesService;
import org.apache.commons.io.FileUtils;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import javax.annotation.Resource;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.File;
import java.io.IOException;
@Controller
public class FilesController {
@Resource
private FilesService filesServiceImpl;
@RequestMapping("show")
public String show(Model model){
model.addAttribute("list",filesServiceImpl.show());
return "jsp/download";
}
@RequestMapping("download")
public void download(int id , String name, HttpServletResponse resp, HttpServletRequest req) throws IOException {
filesServiceImpl.updCount(id,(Users) req.getSession().getAttribute("user"),name);
resp.setHeader("Content-Disposition","attachment;filename="+name);
ServletOutputStream outputStream=resp.getOutputStream();
File file=new File(req.getServletContext().getRealPath("files"),name);
outputStream.write(FileUtils.readFileToByteArray(file));
outputStream.flush();
outputStream.close();
}
}
package com.wq.controller;
import com.wq.pojo.Users;
import com.wq.service.UsersService;
import org.apache.commons.io.FileUtils;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.multipart.MultipartFile;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import java.io.File;
import java.io.IOException;
import java.util.UUID;
@Controller
public class UsersController {
@Resource
private UsersService usersServiceImpl;
@RequestMapping("register")
private String register(Users users, MultipartFile file, HttpServletRequest req) throws IOException {
String fileName=UUID.randomUUID().toString()+file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf("."));
String Path=req.getServletContext().getRealPath("images")+"/"+fileName;
FileUtils.copyInputStreamToFile(file.getInputStream(),new File(Path));
//只能取到最大webapps文件夾內(nèi)容
users.setPhoto(fileName);
final int index=usersServiceImpl.insRegister(users);
if(index>0){
req.getSession().setAttribute("user",users);
return "redirect:/show";
}else {
return "redirect:/register.jsp";
}
}
}
web/jsp/register.jsp
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%--
Created by IntelliJ IDEA.
User: 權(quán)
Date: 2021/3/3
Time: 9:40
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>注冊頁面</title>
<script type="text/javascript" src="/web/js/jquery-1.7.2.js"> </script>
<script type="text/javascript">
$(function(){
var usersname=false;
var password=false;
var passwordSure=false;
//用戶名的驗證
$(":text:eq(0)").blur(function () {
if($(this).val()===""){
$(this).next().css("color","red").html("x");
usersname=false;
}else {
$(this).next().css("color","green").html("√");
usersname=true;
}
});
//密碼的驗證
$(":password:eq(0)").blur(function () {
//在js中要求兩側(cè)//
if(!$(this).val().match(/^\w{6,12}$/)){
$(this).next().css("color","red").html("x");
password=false;
}else {
$(this).next().css("color","green").html("√");
password=true;
}
});
//確認密碼嗎驗證
$(":password:eq(1)").blur(function () {
//在js中要求兩側(cè)//
if($(this).val()===""||$(this).val()!==$(":password:eq(0)").val()){
$(this).next().css("color","red").html("x");
passwordSure=false;
}else {
$(this).next().css("color","green").html("√");
passwordSure=true;
}
});
//文件域,非空驗證
$(":submit").click(function () {
if (usersname===false||password===false||passwordSure===false||$(":file").val()===""){
alert("請?zhí)顚懲暾敿毿畔?#34;);
return false;
}
});
});
</script>
</head>
<body>
<form action="/web/register" method="post" enctype="multipart/form-data">
用戶名:<input type="text" name="username"/><span></span><br>
密碼:<input type="password" name="password"/><span></span><br>
確認密碼:<input type="password" name="passwordSure"/><span></span><br>
頭像:<input type="file" name="file"><br>
<input type="submit" value="注冊">
</form>
</body>
</html>
web/jsp/download.jsp
<%--
Created by IntelliJ IDEA.
User: 權(quán)
Date: 2021/3/3
Time: 15:03
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
<title>下載站</title>
<script type="text/javascript" src="/web/js/jquery-1.7.2.js"></script>
<script type="text/javascript">
$(function () {
$("a").click(function () {
//parent()父標簽
//prev()前一個兄弟標簽
//jquery中規(guī)范,對象名以$開頭
var $td=$(this).parent().prev();
//HTML方法的返回值是字符串
$td.html(parseInt($td.html())+1);
//return false;
});
})
</script>
</head>
<body>
<table border="1">
<tr>
<td>資料名稱</td>
<td>下載次數(shù)</td>
<td>操作</td>
</tr>
<c:forEach items="${list}" var="file">
<tr>
<td>${file.name}</td>
<td>${file.count}</td>
<td><a href="download?id=${file.id}&name=${file.name}">下載</a></td>
</tr>
</c:forEach>
</table>
</body>
</html>
web/jsp/error.jsp
<%--
Created by IntelliJ IDEA.
User: 權(quán)
Date: 2021/3/2
Time: 22:55
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>錯誤</title>
</head>
<body>
超出大小
</body>
</html>
所需要的包
月9日(明天)起
四川云教電視課堂線上教學開始啦!
快點擊課表圖片
小學線上教學課表
溫馨提示
課表使用說明
1.小學課表供我省疫情防控延期開學期間小學1-6年級使用。學校疫情防控知識、學科教學、國家相冊、名師講堂等相關(guān)課程資源從3月9日開始通過有線電視、IPTV、網(wǎng)絡平臺進行推送。
2.“名師講堂”,由省級名師結(jié)合本次疫情防控進行愛國主義教育、生命教育、公德教育、法治教育、健康教育、責任教育、感恩教育、科學教育、勞動教育等。
3.“春日宅家閱讀”活動,是在省教育廳指導下,由報刊社、省教科院、省電教館和新華文軒共同舉辦的閱讀征文活動。訪問四川省教育資源公共服務平臺專區(qū)相關(guān)入口可進入閱讀活動頁面。
4.上午主要安排學科教學,每天學科教學不超過3節(jié)課,每節(jié)課25分鐘,每節(jié)課教師講授時間不超過20分鐘。下午為素質(zhì)拓展類課程/活動。
5.每天閱讀時長不低于1個小時,每天鍛煉時長(含課間操等)不低于1個小時。每天兩次眼保健操,每次課間休息時間不少于15分鐘。
6.每周一早上舉行升旗儀式。
線上課堂小貼示
無法按時收看電視的可以回放重播,還可以通過四川電信、四川移動、四川廣電、四川聯(lián)通、長城寬帶等IPTV和省教育資源公共服務平臺專區(qū),點播課程內(nèi)容哦。
初中線上教學課表
1.以上課表供我省疫情防控延期開學期間七年級、八年級使用。學校疫情防控知識、學科教學、國家相冊、心理健康、名師講堂等相關(guān)課程資源從3月9日開始通過有線電視、IPTV、網(wǎng)絡平臺進行推送。
3.“春日宅家閱讀”活動,是在省教育廳指導下,由報刊社、省教科院、省電教館和新華文軒共同舉辦的閱讀征文活動。可以訪問四川省教育資源公共服務平臺專區(qū)相關(guān)入口進入閱讀活動頁面。
4.“個性化學習”時間,學生可系統(tǒng)復習過去所學學科知識、進行學科知識上的查漏補缺、根據(jù)自身興趣愛好自選學習內(nèi)容。
5.教師和學生需同時收看。“師生互動答疑”由學生和自己的教師通過微信、QQ、電話等平臺和方式進行互動答疑。
6.上午主要安排學科教學,每天學科教學不超過4節(jié)課,每節(jié)課40分鐘,每節(jié)課教師講授時間不超過20分鐘。下午為素質(zhì)拓展類課程/活動。
7.每天閱讀時長不低于1個小時,每天鍛煉時長(含課間操等)不低于1個小時。每天兩次眼保健操,每次課間休息時間不少于15分鐘。
8.每周一早上舉行升旗儀式。
高中線上教學課表
1.以上課表供我省疫情防控延期開學期間高一年級、高二年級使用。學校疫情防控知識、學科教學、國家相冊、心理健康輔導、名師講堂等相關(guān)課程資源從3月9日開始通過有線電視、IPTV、網(wǎng)絡平臺進行推送。中國詩詞大會可登錄央視網(wǎng)站觀看或訪問省教育資源公共服務平臺專區(qū)鏈接。
畢業(yè)班看過來!
初三、高三年級課程由成都市教科院打造的成都數(shù)字學校提供。以下課表根據(jù)成都數(shù)字學校課表編制。
3月6日
教育廳公布了
使用電視開展線上教學的
最全操作手冊!
速看!3月9日起,四川中小學線上教學開始,最全操作手冊請收好!
本手冊適用于普通小學、初中、高中各學段的教師、家長、學生了解在線教學的觀課途徑、互動方式、課程資源獲取、課前準備、終端操作方法與服務方式等。
我省線上教學課程可通過省廣電有線電視提供的專用直播頻道實時收看、時移回看,也可以通過四川電信、四川移動、四川廣電、四川聯(lián)通網(wǎng)絡電視(IPTV)相應專區(qū)和省資源平臺專區(qū)同步點播和根據(jù)需要隨時回看。
一、電子教材獲取
四川省中小學教材(電子版)獲取方式主要有以下兩種途徑:
1.通過四川省教育資源公共服務平臺專區(qū)“數(shù)字教材”版塊下載,網(wǎng)址http://tkbtx.scedu.com.cn/
2.通過國家中小學網(wǎng)絡云平臺電子教材專區(qū)下載,
網(wǎng)址http://ebook.eduyun.cn/yktdzjc/index.html
二、師生觀課方式
方式一:收看有線電視
已安裝四川廣電網(wǎng)絡有線數(shù)字電視的師生可以通過電視收看。在廣電網(wǎng)絡有線電視指定“四川云教電視課堂”專用頻道中選擇對應的年級頻道觀看首播;首播結(jié)束后可以進入點播/回看專區(qū)回看內(nèi)容,也可以在首播時進行時移回看。頻道列表如下:
師生可以在電視直播頻道列表中選擇對應的年級頻道,收看課程內(nèi)容,也可以在遙控器上輸入頻道號碼(以各地廣電網(wǎng)絡公司公布為準),快速進入播放頻道。
方式二:收看交互式網(wǎng)絡電視(IPTV)
已安裝電信、移動、廣電等網(wǎng)絡電視(IPTV)的用戶可以通過電視機頂盒進入相應點播專區(qū)選擇對應年級收看、點播課程。操作說明如下。
電信網(wǎng)絡電視(IPTV)收看圖示
移動網(wǎng)絡電視(IPTV)收看圖示
廣電網(wǎng)絡電視(IPTV)收看圖示
聯(lián)通網(wǎng)絡電視(IPTV)收看圖示
方式三:訪問網(wǎng)絡平臺
師生可以通過電腦、平板等終端登錄互聯(lián)網(wǎng),進入省教育資源公共服務平臺(網(wǎng)址www.scedu.com.cn)“停課不停教、停課不停學”數(shù)字教育資源專區(qū)選擇對應的學段、年級,根據(jù)學案建議表,選擇相應學科進行在線學習。省教育資源公共服務平臺還提供學習視頻和學習工具下載服務。
三、師生互動方式
學校是教學互動組織的主體,師生可根據(jù)學校選用的學習工具平臺開展教學互動。課程開播前,建議老師指導學生提前準備好互動學習工具(可選擇省教育資源公共服務平臺專區(qū)提供的電信會易通、移動云視訊、騰訊課堂等10余種學習工具),完成在線班級創(chuàng)建,并進行班級管理、互動研討、學習輔助等。學習工具下載方式及安裝使用說明詳見專區(qū)“學習工具”專欄。
四、師生課前準備
?盡量選擇相對安靜,采光通風良好的房間觀看。
?盡量選擇高度合適且舒適的桌椅,并調(diào)整好桌椅與電視、電腦等播放設(shè)備間的距離,保護學生視力。
?提前10分鐘打開電視、電腦等設(shè)備,確保設(shè)備可用、線路暢通。
?提前準備好文具、筆記本、水杯等。
?全省同時線上學習,人數(shù)較多,為避免網(wǎng)絡擁堵,提倡使用有線電視方式收看,既保護視力,又保證教學效果。
五、終端服務說明
?使用有線電視遇到問題,請咨詢四川廣電網(wǎng)絡客服熱線:96655。
?使用IPTV電視遇到問題,請咨詢對應運營商電話:10000(電信)、10086(移動)、96655(廣電)、10010(聯(lián)通)。
?使用省教育資源公共服務平臺遇到問題,請咨詢電話:96333-3。
?使用學校選用的在線互動平臺遇到問題,請撥打?qū)脚_的服務熱線或咨詢在線客服。
“四川教育發(fā)布”公眾號
“四川電視臺科教頻道”公眾號
其他教學問題,請向所在學校或教育行政部門咨詢。
本試用手冊,如有變化,將在“四川教育發(fā)布”、“四川電視臺科教頻道”公眾號和四川省教育資源公共服務平臺及時告知,請予關(guān)注。
注意:
為保障課程播出,確保廣大師生正常收看,本周末將進行兩次調(diào)試試播,計劃試播時間為:周六晚上(3月7日)20:00-20:30,周日上午(3月8日)11:00-11:30
?無法收看直播的師生可以利用下午或者晚上的時間通過IPTV和省平臺專區(qū)進行點播、回放等,沒有開通數(shù)字電視、網(wǎng)絡寬帶不暢的家庭由各地落實個性化教學輔導,并在開學后做好正常教學的有效銜接。
四川省教育資源公共服務平臺(網(wǎng)址www.scedu.com.cn)是教育廳組織實施全省中小學在線教學活動官方平臺。延期開學期間,平臺推出“停課不停教、停課不停學”數(shù)字教育資源專區(qū)(以下簡稱“專區(qū)”),承擔在線教學有關(guān)信息發(fā)布、學案公布、教學資源匯聚推送等工作,同時平臺向廣電、電信、移動、聯(lián)通等第三方平臺提供在線課程資源,由合作平臺共同為全省師生提供課程收看、點播等服務。
責編:劉婕
據(jù)四川省教育廳安排,從3月9日起,通過有線電視、網(wǎng)絡電視、網(wǎng)絡平臺三種方式推送播出教學資源,開展“停課不停教、停課不停學”線上教學。線上教學將依托四川省教育資源公共服務平臺(網(wǎng)址www.scedu.com.cn),為全省中小學校和師生在線教學提供保障。提倡學生使用電視開展線上學習。
觀觀現(xiàn)將具體收看手冊(試用)公布如下↓↓↓↓↓
本手冊適用于普通小學、初中、高中各學段的教師、家長、學生了解在線教學的觀課途徑、互動方式、課程資源獲取、課前準備、終端操作方法與服務方式等。
我省線上教學課程可通過省廣電有線電視提供的專用直播頻道實時收看、時移回看,也可以通過四川電信、四川移動、四川廣電、四川聯(lián)通網(wǎng)絡電視(IPTV)相應專區(qū)和省資源平臺專區(qū)同步點播和根據(jù)需要隨時回看。
一、電子教材獲取
四川省中小學教材(電子版)獲取方式主要有以下兩種途徑(建議在電腦上打開下載):
1.通過四川省教育資源公共服務平臺專區(qū)“數(shù)字教材”版塊下載,網(wǎng)址http://tkbtx.scedu.com.cn/
2.通過國家中小學網(wǎng)絡云平臺電子教材專區(qū)下載,網(wǎng)址http://ebook.eduyun.cn/yktdzjc/index.html
二、師生觀課方式
方式一:收看有線電視
已安裝四川廣電網(wǎng)絡有線數(shù)字電視的師生可以通過電視收看。在廣電網(wǎng)絡有線電視指定“四川云教電視課堂”專用頻道中選擇對應的年級頻道觀看首播;首播結(jié)束后可以進入點播/回看專區(qū)回看內(nèi)容,也可以在首播時進行時移回看。頻道列表如下:
師生可以在電視直播頻道列表中選擇對應的年級頻道,收看課程內(nèi)容,也可以在遙控器上輸入頻道號碼(以各地廣電網(wǎng)絡公司公布為準),快速進入播放頻道。
方式二:收看交互式網(wǎng)絡電視(IPTV)
已安裝電信、移動、廣電等網(wǎng)絡電視(IPTV)的用戶可以通過電視機頂盒進入相應點播專區(qū)選擇對應年級收看、點播課程。操作說明如下。
電信網(wǎng)絡電視(IPTV)收看圖示
移動網(wǎng)絡電視(IPTV)收看圖示
廣電網(wǎng)絡電視(IPTV)收看圖示
聯(lián)通網(wǎng)絡電視(IPTV)收看圖示
方式三:訪問網(wǎng)絡平臺
師生可以通過電腦、平板等終端登錄互聯(lián)網(wǎng),進入省教育資源公共服務平臺(網(wǎng)址www.scedu.com.cn)“停課不停教、停課不停學”數(shù)字教育資源專區(qū)選擇對應的學段、年級,根據(jù)學案建議表,選擇相應學科進行在線學習。省教育資源公共服務平臺還提供學習視頻和學習工具下載服務。操作手冊詳見平臺專區(qū)。
三、師生互動方式
學校是教學互動組織的主體,師生可根據(jù)學校選用的學習工具平臺開展教學互動。課程開播前,建議老師指導學生提前準備好互動學習工具(可選擇省教育資源公共服務平臺專區(qū)提供的電信會易通、移動云視訊、騰訊課堂等10余種學習工具),完成在線班級創(chuàng)建,并進行班級管理、互動研討、學習輔助等。學習工具下載方式及安裝使用說明詳見專區(qū)“學習工具”專欄。
四、師生課前準備
?盡量選擇相對安靜,采光通風良好的房間觀看。
?盡量選擇高度合適且舒適的桌椅,并調(diào)整好桌椅與電視、電腦等播放設(shè)備間的距離,保護學生視力。
?提前10分鐘打開電視、電腦等設(shè)備,確保設(shè)備可用、線路暢通。
?提前準備好文具、筆記本、水杯等。
?全省同時線上學習,人數(shù)較多,為避免網(wǎng)絡擁堵,提倡使用有線電視方式收看,既保護視力,又保證教學效果。
五、終端服務說明
?使用有線電視遇到問題,請咨詢四川廣電網(wǎng)絡客服熱線:96655。
?使用IPTV電視遇到問題,請咨詢對應運營商電話:10000(電信)、10086(移動)、96655(廣電)、10010(聯(lián)通)。
?使用省教育資源公共服務平臺遇到問題,請咨詢電話:96333-3。
?使用學校選用的在線互動平臺遇到問題,請撥打?qū)脚_的服務熱線或咨詢在線客服。
“四川教育發(fā)布”公眾號
“四川電視臺科教頻道”公眾號
?其他教學問題,請向所在學校或教育行政部門咨詢。
本試用手冊,如有變化,將在“四川教育發(fā)布”、“四川電視臺科教頻道”公眾號和四川省教育資源公共服務平臺及時告知,請予關(guān)注。
*請認真填寫需求信息,我們會在24小時內(nèi)與您取得聯(lián)系。