摘要:
package com.mkyong; import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; public class ReadFileExample1 { private static final String FILENAME = "E:\\test\\filenam... 阅读全文
摘要:
http://www.cnblogs.com/10158wsj/p/7050736.html 阅读全文
摘要:
method1: 前提是你的长度已经确定!比如规定现实10位! - 优点: 不需要都是数字类型 String str_m = "123X"; String str ="0000000000"; str_m=str.substring(0, 10-str_m.length())+str_m; Syst 阅读全文