A. java怎樣輸出不換行
System.out.println()這個是在輸出內容之後換行,而 System.out.print()輸出內容之後不換行。只是一個 ln 的差距。
public class ArrayDemo {
public static void main(String[] args) {
int[] arr = { 11, 22, 33, 44, 55 };
System.out.print("[");
for (int x = 0; x < arr.length; x++) {
if (x == arr.length - 2) {
System.out.println(arr[x] + "]");
當x==0時:執行else中的語句,結果是:[11]
當x==1時:執行else中的語句,結果是:[11 22]
當x==2時:執行else中的語句,結果是:[11 22 33]
當x==3時:執行 if 中的語句,結果是:[11 22 33 44],此處執行完就會換行
當x==4時:執行else中的語句,結果是:[11 22 33 44]結束。
(1)java字元串去除換行擴展閱讀:
當編輯並運行一個Java程序時,需要同時涉及到這四種方面。使用文字編輯軟體(例如記事本、寫字板、UltraEdit等)或集成開發環境(Eclipse、MyEclipse等)在Java源文件中定義不同的類,通過調用類(這些類實現了Java API)中的方法來訪問資源系統;
把源文件編譯生成一種二進制中間碼,存儲在class文件中,然後再通過運行與操作系統平台環境相對應的Java虛擬機來運行class文件,執行編譯產生的位元組碼,調用class文件中實現的方法來滿足程序的Java API調用。
B. Java如何去除字元串中的空格、回車、換行符、製表符
笨方法:String s = 你要去除的字元串;
1.去除空格:s = s.replace(‘\\s’,);
2.去除回車:s = s.replace(‘
’,);
這樣也可以把空格和回車去掉,其他也可以照這樣做。
註:
回車(\u000a)
\t 水平製表符(\u0009)
\s 空格(\u0008)
換行 將游標移動到下一行第一格 相當於平時用的回車 \r 回車 將游標移動到當前行第一格}
C. Java如何去除字元串中的空格、回車、換行符、製表符
importjava.util.regex.Matcher;
importjava.util.regex.Pattern;
publicclassStringUtils{
/**
*正則
*/
(Stringstr){
Stringdest="";
if(str!=null){
Patternp=Pattern.compile("\s*| | | ");
Matcherm=p.matcher(str);
dest=m.replaceAll("");
}
returndest;
}
publicstaticvoidmain(String[]args){
System.out.println(StringUtils.replaceBlank("justdoit!"));
}
/*-----------------------------------
笨方法:Strings="你要去除的字元串";
1.去除空格:s=s.replace('\s','');
2.去除回車:s=s.replace(' ','');
這樣也可以把空格和回車去掉,其他也可以照這樣做。
註: 回車(u000a)
水平製表符(u0009)
s空格(u0008)
換行(u000d)*/
}
D. 鏁版嵁搴撲腑鏁版嵁鍋跺皵鏈夋崲琛岀︺佸洖杞︾︼紝鍦╦ava閲屽彇鍑烘暟鎹鎷糐SON鏍煎紡瀛楃︿覆鐨勬椂鍊欒佸嚭闂棰樸
public static String replaceBlank(String str) {
String dest = "";
if (str!=null) {
Pattern p = Pattern.compile("\\s*|\t|\r|\n");
Matcher m = p.matcher(str);
dest = m.replaceAll("");
}
return dest;
}
鍘諱竴涓嬫崲琛 鍥炶濺絎 鍐嶆嫾鎺
E. java 去掉txt里的空格和回車符(也就是換行符)代碼怎麼寫
String filePath = "D://111//11.txt";
BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(filePath)));
while((str=br.readLine())!=null) {
String s =str;
s.replace("\r","");
s.replace("\t","");
}