2个回答
展开全部
public static void parse(String path) throws Exception {
File file = new File(path);
if (file.exists()) {
InputStream input = new FileInputStream(file);
byte data[] = new byte[1024];
int length = input.read(data);
System.out.println("输入的数据是:【" + new String(data, 0, length) + "】");
input.close();
}
}和这个类似,自个判断吧
File file = new File(path);
if (file.exists()) {
InputStream input = new FileInputStream(file);
byte data[] = new byte[1024];
int length = input.read(data);
System.out.println("输入的数据是:【" + new String(data, 0, length) + "】");
input.close();
}
}和这个类似,自个判断吧
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询