提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
如何使用子字符串方法修剪StringBuffer对象。
public class Main { // 来自 时 代 J a v a - nowjava.com public static void main(String[] args) { StringBuffer sbf = new StringBuffer(" Hello World ! "); String str = sbf.toString().trim(); System.out.println("StringBuffer trim: \"" + str +"\""); System.out.println("\"" + trim(sbf) + "\""); } private static String trim(StringBuffer sbf){ int start, end; /*来自 N o w J a v a . c o m*/ for(start = 0; start < sbf.length(); start++){ if(sbf.charAt(start) != ' ') break; } //find the last character which is not space for(end = sbf.length(); end > start ; end--){