download:《慕慕到家》家政小程序组件化进阶实战
学习没有速成,但可以很有技巧!本课程为你梳理关键知识脉络,通过经典开发场景还原,理清问题的来龙去脉,告别“实现了就好”、“维护不了”的困境;“封装”、“异步”、“架构设计”、“面向对象”等晦涩的名词不再神秘,让“可读性、可扩展性、可维护性”落地。
1. 在校学生 2. 一年左右前端开发者
3. 服务端开发者 4. 缺乏实际工程实践
技术储备要求
HTML/CSS 基础
JavaScript 基础
import java.io.FileInputStream ;
import java.io.FileOutputStream ;
import java.io.IOException ;
import java.nio.channels.FileChannel ;
public class FileCopy
{
public static void main(String[]args) throws IOException{
String sourcefile= "E:\\参考资料\\设计模式.pdf" ;
String targetfile = "E:\\参考资料\\设计模式1.pdf" ;
copyfile(sourcefile, targetfile);
}
/**
*
* 方法用途:文件拷贝
* 方法名:copyfile
* 返回值:void
*
* 参数:@param sourcefile 源文件
* 参数:@param targetfile 目标文件
* 参数:@throws IOException
*/
private static void copyfile(String sourcefile,String targetfile) throws IOException{
FileChannel sourcefc = new FileInputStream(sourcefile).getChannel();
FileChannel targetfc = new FileOutputStream(targetfile).getChannel();
sourcefc.transferTo( 0 ,sourcefc.size(),targetfc);
//上面没有进行文件是否存在的判断和异常的处理
}
}
|