关于java中File类的绝对路径问题
我在g:/系统测试安装文件/介绍.txt的文件为什么提示找不到路径啊??我的创建格式是FileInputStreamf1=newFileInputStream("g:/系...
我在g:/系统测试安装文件/介绍.txt的文件为什么提示找不到路径啊??
我的创建格式是FileInputStream f1=new FileInputStream("g:/系统测试安装文件/介绍.txt"); 展开
我的创建格式是FileInputStream f1=new FileInputStream("g:/系统测试安装文件/介绍.txt"); 展开
1个回答
2013-08-12
展开全部
1,把文件路径改成英文的试试!2,用双斜杠试试 参考一下下面的代码:import java.io.*;public class FileCopy{ public static void main(String args[]) { try{ File inFile=new File("e://QQ83194498.txt"); File outFile=new File("e://UC83194498.txt"); FileInputStream fis=new FileInputStream(inFile); FileOutputStream fos=new FileOutputStream(outFile); int c; while((c=fis.read())!=-1) fos.write(c); fis.close(); fos.close(); System.out.println("文件复制成功!请您查看E盘!"); } catch(FileNotFoundException e) { System.out.println("FileStreamsTest: "+e); } catch(IOException ioe) { System.err.println("FileStreamsTest: "+ioe); } }}运行结果:文件复制成功!请您查看E盘!(在E盘产生文件UC83194498.TXT)
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询