- 相關(guān)推薦
Java編程常見問題匯總
在我們寫Java程序的過程中,其實(shí)里面有一些細(xì)節(jié)大家可能沒怎么注意,雖然一般沒有什么大問題,但俗話說的好,差之毫厘失之千里。所以我們一定要注意這些小細(xì)節(jié)。那在我們?nèi)粘5木幊讨,有哪些我們不常注意的小?xì)節(jié)呢?下面跟yjbys小編一起來看看吧!
字符串連接誤用
錯(cuò)誤的寫法:
String s = "";
for (Person p : persons) {
s += ", " + p.getName();
}
s = s.substring(2); //remove first comma
正確的寫法:
StringBuilder sb = new StringBuilder(persons.size() * 16); // well estimated buffer
for (Person p : persons) {
if (sb.length() > 0) sb.append(", ");
sb.append(p.getName);
}
錯(cuò)誤的使用StringBuffer
錯(cuò)誤的寫法:
StringBuffer sb = new StringBuffer();
sb.append("Name: ");
sb.append(name + '\n');
sb.append("!");
...
String s = sb.toString();
問題在第三行,append char比String性能要好,另外就是初始化StringBuffer沒有指定size,導(dǎo)致中間append時(shí)可能重新調(diào)整內(nèi)部數(shù)組大小。如果是JDK1.5最好用StringBuilder取代StringBuffer,除非有線程安全的要求。還有一種方式就是可以直接連接字符串。缺點(diǎn)就是無法初始化時(shí)指定長度。
正確的寫法:
StringBuilder sb = new StringBuilder(100);
sb.append("Name: ");
sb.append(name);
sb.append("\n!");
String s = sb.toString();
或者這樣寫:
String s = "Name: " + name + "\n!";
測試字符串相等性
錯(cuò)誤的寫法:
if (name.compareTo("John") == 0) ...
if (name == "John") ...
if (name.equals("John")) ...
if ("".equals(name)) ...
上面的代碼沒有錯(cuò),但是不夠好。compareTo不夠簡潔,==原義是比較兩個(gè)對(duì)象是否一樣。另外比較字符是否為空,最好判斷它的長度。
正確的寫法:
if ("John".equals(name)) ...
if (name.length() == 0) ...
if (name.isEmpty()) ...
數(shù)字轉(zhuǎn)換成字符串
錯(cuò)誤的寫法:
"" + set.size()
new Integer(set.size()).toString()
正確的寫法:
String.valueOf(set.size())
利用不可變對(duì)象(Immutable)
錯(cuò)誤的寫法:
zero = new Integer(0);
return Boolean.valueOf("true");
正確的寫法:
zero = Integer.valueOf(0);
return Boolean.TRUE;
請(qǐng)使用XML解析器
錯(cuò)誤的寫法:
int start = xml.indexOf("
int end = xml.indexOf("");
String name = xml.substring(start, end);
正確的寫法:
SAXBuilder builder = new SAXBuilder(false);
Document doc = doc = builder.build(new StringReader(xml));
String name = doc.getRootElement().getChild("name").getText();
請(qǐng)使用JDom組裝XML
錯(cuò)誤的寫法:
String name = ...
String attribute = ...
String xml = "
+"
+"";
正確的寫法:
Element root = new Element("root");
root.setAttribute("att", attribute);
root.setText(name);
Document doc = new Documet();
doc.setRootElement(root);
XmlOutputter out = new XmlOutputter(Format.getPrettyFormat());
String xml = out.outputString(root);
XML編碼陷阱
錯(cuò)誤的寫法:
String xml = FileUtils.readTextFile("my.xml");
因?yàn)閤ml的編碼在文件中指定的,而在讀文件的時(shí)候必須指定編碼。另外一個(gè)問題不能一次就將一個(gè)xml文件用String保存,這樣對(duì)內(nèi)存會(huì)造成不必要的浪費(fèi),正確的做法用InputStream來邊讀取邊處理。為了解決編碼的問題, 最好使用XML解析器來處理。
未指定字符編碼
錯(cuò)誤的寫法:
Reader r = new FileReader(file);
Writer w = new FileWriter(file);
Reader r = new InputStreamReader(inputStream);
Writer w = new OutputStreamWriter(outputStream);
String s = new String(byteArray); // byteArray is a byte[]
byte[] a = string.getBytes();
這樣的代碼主要不具有跨平臺(tái)可移植性。因?yàn)椴煌钠脚_(tái)可能使用的是不同的默認(rèn)字符編碼。
正確的寫法:
Reader r = new InputStreamReader(new FileInputStream(file), "ISO-8859-1");
Writer w = new OutputStreamWriter(new FileOutputStream(file), "ISO-8859-1");
Reader r = new InputStreamReader(inputStream, "UTF-8");
Writer w = new OutputStreamWriter(outputStream, "UTF-8");
String s = new String(byteArray, "ASCII");
byte[] a = string.getBytes("ASCII");
未對(duì)數(shù)據(jù)流進(jìn)行緩存
錯(cuò)誤的寫法:
InputStream in = new FileInputStream(file);
int b;
while ((b = in.read()) != -1) {
...
}
上面的代碼是一個(gè)byte一個(gè)byte的讀取,導(dǎo)致頻繁的本地JNI文件系統(tǒng)訪問,非常低效,因?yàn)檎{(diào)用本地方法是非常耗時(shí)的。最好用BufferedInputStream包裝一下。曾經(jīng)做過一個(gè)測試,從/dev/zero下讀取1MB,大概花了1s,而用BufferedInputStream包裝之后只需要60ms,性能提高了94%! 這個(gè)也適用于output stream操作以及socket操作。
正確的寫法:
InputStream in = new BufferedInputStream(new FileInputStream(file));
無限使用heap內(nèi)存
錯(cuò)誤的寫法:
byte[] pdf = toPdf(file);
這里有一個(gè)前提,就是文件大小不能講JVM的heap撐爆。否則就等著OOM吧,尤其是在高并發(fā)的服務(wù)器端代碼。最好的做法是采用Stream的方式邊讀取邊存儲(chǔ)(本地文件或database)。
正確的寫法:
File pdf = toPdf(file);
另外,對(duì)于服務(wù)器端代碼來說,為了系統(tǒng)的安全,至少需要對(duì)文件的大小進(jìn)行限制。
不指定超時(shí)時(shí)間
錯(cuò)誤的代碼:
Socket socket = ...
socket.connect(remote);
InputStream in = socket.getInputStream();
int i = in.read();
這種情況在工作中已經(jīng)碰到不止一次了。個(gè)人經(jīng)驗(yàn)一般超時(shí)不要超過20s。這里有一個(gè)問題,connect可以指定超時(shí)時(shí)間,但是read無法指定超時(shí)時(shí)間。但是可以設(shè)置阻塞(block)時(shí)間。
正確的寫法:
Socket socket = ...
socket.connect(remote, 20000); // fail after 20s
InputStream in = socket.getInputStream();
socket.setSoTimeout(15000);
int i = in.read();
另外,文件的讀取(FileInputStream, FileChannel, FileDescriptor, File)沒法指定超時(shí)時(shí)間, 而且IO操作均涉及到本地方法調(diào)用, 這個(gè)更操作了JVM的控制范圍,在分布式文件系統(tǒng)中,對(duì)IO的操作內(nèi)部實(shí)際上是網(wǎng)絡(luò)調(diào)用。一般情況下操作60s的操作都可以認(rèn)為已經(jīng)超時(shí)了。為了解決這些問題,一般采用緩存和異步/消息隊(duì)列處理。
【Java編程常見問題】相關(guān)文章:
Java基本編程技巧09-03
關(guān)于JAVA的XML編程09-03
java面向?qū)ο缶幊填}庫及答案09-24
JAVA編程面試題及答案07-07
Java編程中如何實(shí)現(xiàn)中文排序07-19
2016年最新JAVA編程題及答案08-30