本帖最后由 回首、后_街 于 2013-4-25 22:21 编辑
//使用字节流对象合并视频
private static void method_2() throws Exception {
// TODO Auto-generated method stub
Vector<String> v = new Vector<String>();
//使用循环获取路径
int count=0;
//文件路径是对的
while(true){
v.addAll((Collection<? extends String>) new FileInputStream("D:T11\\11\\"+(count++)+".mesh"));
}
}
合并该文件下的文件
//该程序运行后为什么爆出Exception in thread "main" java.io.FileNotFoundException: D:T11\11\0.mesh(系统找不到指定的路径。) |