关于换行

java取消换行,CSS强制换行...竟然忘记了....汗!
java 取消换行代码
  1. public class Formatter {  
  2.   
  3.     public static void main(String...args) {  
  4.         try  
  5.         {  
  6.             BufferedReader reader = new BufferedReader(new FileReader("D://in.txt"));  
  7.             String sReadLine = reader.readLine();   
  8.             StringBuilder sAllContext = new StringBuilder();  
  9.             while(sReadLine!=null)  
  10.             {  
  11.                 sAllContext.append(sReadLine);  
  12.                 sReadLine = reader.readLine();  
  13.             }   
  14.             reader.close();  
  15.             PrintWriter pw = new PrintWriter(new FileOutputStream("D://out.txt"));  
  16.             pw.println(format(sAllContext.toString()));  
  17.             pw.close();  
  18.         }  
  19.           
  20.         catch(Exception e){  
  21.             e.printStackTrace();  
  22.         }  
  23.     }  
  24.       
  25.     static String format(String str){  
  26.         String reStr = str.replaceAll("\t"" ");  
  27.         reStr = reStr.replaceAll("\r\n"" ");  
  28.         return reStr;  
  29.     }  
  30. }  

CSS强制换行代码
  1. ->div 便签解决方法

  2. white-space:normal; word-break:break-all;这里前者是遵循标准。
  3. (如果直接加在TD 则:style=" word-break: break-all;"
  4. #wrap{white-space:normal; width:200px; }
  5. 或者
  6. #wrap{word-break:break-all;width:200px;}

  7. < div id=" wrap " width="80">将我换行< /div>

  8. ->table 标签解决方法

  9. < style>
  10. .tb{table-layout:fixed}
  11. < /style>

  12. < table class="tbl" width="80">
  13. < tr>< td>将我换行 < /td>< /tr>
  14. < /table>

  15. < table class="tb" width="80">
  16. < tr>< td nowrap>将我换行< /td>< /tr>
  17. < /table>

  18. < table class="tb" width=80>
  19. < tr>
  20. < td width=25% nowrap>将我换行< /td>
  21. < td nowrap>将我换行< /td>
  22. < /tr>
  23. < /table>

你可能感兴趣的:(css)