黑马程序员技术交流社区

标题: 程序哪错了 [打印本页]

作者: 邵中国    时间: 2012-4-19 16:44
标题: 程序哪错了
import java.io.*;
import java.nio.channels.*;
public class TransforTo {
public static void main (String[] args)throws Exception{
  if(args.length != 2){
   System.out.println("argument : soucefile destfile");
   System.exit(1);
   
  }
  FileChannel in= new FileInputStream(args[0]).getChannel();
  FileChannel out = new FileOutputStream(args[1]).getChannel();
  in.transforTo(0,in.size(),1);                              //zhe
  
}
}

作者: 刘旭    时间: 2012-4-19 16:58
兄弟,你那一句方法的单词拼写错了,参数也传错了,正确的应该是:in.transferTo(0,in.size(),out);   
最近我也在学习java nio,并做了一些笔记:http://blog.csdn.net/liuxu93466?viewmode=contents
欢迎交流
作者: 邵中国    时间: 2012-4-19 17:17
正点
我修改的时候把单词给整乱了





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2