提交 98eca5d9 authored 作者: 李秋林's avatar 李秋林

测试完成,删除部分控制台打印信息

上级 58756bc6
...@@ -65,7 +65,6 @@ public class ReadExcelUtils { ...@@ -65,7 +65,6 @@ public class ReadExcelUtils {
row = sheet.getRow(0); row = sheet.getRow(0);
// 标题总列数 // 标题总列数
int colNum = row.getPhysicalNumberOfCells(); int colNum = row.getPhysicalNumberOfCells();
System.out.println("colNum:" + colNum);
String[] title = new String[colNum]; String[] title = new String[colNum];
for (int i = 0; i < colNum; i++) { for (int i = 0; i < colNum; i++) {
// title[i] = getStringCellValue(row.getCell((short) i)); // title[i] = getStringCellValue(row.getCell((short) i));
......
...@@ -36,7 +36,6 @@ public class MD5Utils { ...@@ -36,7 +36,6 @@ public class MD5Utils {
return hex(digest); return hex(digest);
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
System.out.println(e.toString());
return ""; return "";
} }
} }
...@@ -95,7 +94,7 @@ public class MD5Utils { ...@@ -95,7 +94,7 @@ public class MD5Utils {
public static void main(String[] args) { public static void main(String[] args) {
// 原密码 // 原密码
String plaintext = "wxl000368"; String plaintext = "wxl000680";
// 获取加盐后的MD5值 // 获取加盐后的MD5值
String ciphertext = MD5Utils.getSaltMD5(plaintext); String ciphertext = MD5Utils.getSaltMD5(plaintext);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论