3个回答
展开全部
调用时,类名.readFile("d:/1.txt");即可:
public static String[] readFile(String sourceFileName) throws IOException
{
String[] array = null;
Set<String> result = new HashSet<String>();
String lineText;
BufferedReader reader = null;
try
{
File sourceFile = new File(sourceFileName);
reader = new BufferedReader(new FileReader(sourceFile));
while ((lineText = reader.readLine()) != null)
{
//验证是否合法
if(!"".equals(lineText.trim()))
{
result.add(lineText.trim());
}
}
}
catch (FileNotFoundException e)
{
//这里由于文件基本不太可能找不到,将此类异常忽略
throw new RuntimeException(e);
}
finally
{
if (reader != null)
{
try
{
reader.close();
}
catch (IOException e)
{
throw new RuntimeException(e);
}
}
}
return result.toArray();
}
public static String[] readFile(String sourceFileName) throws IOException
{
String[] array = null;
Set<String> result = new HashSet<String>();
String lineText;
BufferedReader reader = null;
try
{
File sourceFile = new File(sourceFileName);
reader = new BufferedReader(new FileReader(sourceFile));
while ((lineText = reader.readLine()) != null)
{
//验证是否合法
if(!"".equals(lineText.trim()))
{
result.add(lineText.trim());
}
}
}
catch (FileNotFoundException e)
{
//这里由于文件基本不太可能找不到,将此类异常忽略
throw new RuntimeException(e);
}
finally
{
if (reader != null)
{
try
{
reader.close();
}
catch (IOException e)
{
throw new RuntimeException(e);
}
}
}
return result.toArray();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
直接下载 TXT 的小说 JAR格式的 应用起来 很麻烦
直接下载 TXT
我的是 天语A905 我酷爱看 小说 ,推荐 你个 软件 anyview, 就像电脑一样可以 设置 很多 选项。下jar格式的 软件 安装 后 运行
自己 玩吧
直接下载 TXT
我的是 天语A905 我酷爱看 小说 ,推荐 你个 软件 anyview, 就像电脑一样可以 设置 很多 选项。下jar格式的 软件 安装 后 运行
自己 玩吧
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询