问答详情
源自:2-4 获取文件内容起止位置

读取文件时出错

public void doPost(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {
		InputStream in = request.getInputStream();
		String tempFile = "G:/tempFile";
		File temp = new File(tempFile);
		
		FileOutputStream out = new FileOutputStream(temp);
		byte[] b = new byte[1024];
		int n;
		while((n=in.read(b))!=-1){
			out.write(b,0,n);
		}
		in.close();
		out.close();
	}

为什么我读取的内容是myfile=test.txt然后就没有了?

提问者:Michael_Extremist 2015-03-08 21:14

个回答

  • David
    2015-03-10 20:35:04

    您好:建议您将视频代码中“tempFile.delete();”注释掉,这样tempFile文件方法结束后不会删除掉,使用NotePad++ 或 Editplus 文本编辑器打开看一下文件内容是否有问题,一步步调试,方便定位问题。

    您提出的问题有些模糊,myfile=test.txt是在哪里读取的?