今天在和同事排除一个问题的时候发现,从ftp上下载下来一个文件,写到本地后会多加一个换行,这样会导致md5值发生变化。然后到各个地方去排除问题,最后发现是以前写的程序的一个问题,将这个程序贴在这个地方.
/**
* 获取类路径文件内容
*
* @param filePath
* @return
*/
public static String getContentFromClassPath(String filePath) {
InputStream is = null;
try {
is = new ClassPathResource(filePath).getInputStream();
@SuppressWarnings("unchecked")
List<String> sqlLines = IOUtils.readLines(is, "UTF-8");
StringBuilder builder = new StringBuilder();
for (String line : sqlLines) {
builder.append(line).append("\n");
}
return builder.toString();
} catch (IOException e) {
throw new RuntimeException(e);
} finally {
IOUtils.closeQuietly(is);
}
}
其实在使用StringBuffer和StringBuilder下面拼字符串的时候,有时候是用逗号或者什么字符分割,会多出来一个,一般是要将最后一个删除,修正的程序如下:
/**
* 获取类路径文件内容
*
* @param filePath
* @return
*/
public static String getContentFromClassPath(String filePath) {
InputStream is = null;
try {
is = new ClassPathResource(filePath).getInputStream();
@SuppressWarnings("unchecked")
List<String> sqlLines = IOUtils.readLines(is, "UTF-8");
StringBuilder builder = new StringBuilder();
for (String line : sqlLines) {
builder.append(line).append("\n");
}
if(builder.length() > 0){
builder.deleteCharAt(builder.length() -1);
}
return builder.toString();
} catch (IOException e) {
throw new RuntimeException(e);
} finally {
IOUtils.closeQuietly(is);
}
}
分享到:
评论