資料遍歷
public class StringTest {
public static void main(String[] args) {
String str=new String("Hello_World");
byte[] bytes = str.getBytes();
for (int i = 0; i < bytes.length; i++) {
System.out.print(bytes[i]+",");
}
System.out.println();
String string = Arrays.toString(bytes);
System.out.println(string);
for (byte aByte : bytes) {
System.out.print(aByte+",");
}
}
}
public class StringTest {
public static void main(String[] args) {
String str=new String(“Hello_World”);
System.out.println(str.charAt(1));//指定索引處的值
System.out.println(str.codePointAt(1));//指定索引處的字元(Unicode程式碼點)。
System.out.println(str.compareTo(“hello_World”));//按字典順序比較,
System.out.println(str.concat("!"));//將指定的字串連線到該字串的末尾。
System.out.println(str.contains(“llo”));//當且僅當此字串包含指定的char值序列時才返回true。
System.out.println(str.endsWith(“rld”));//測試此字串是否以指定的字尾結尾。
System.out.println(String.format( " %(,d " , - 1000000 ));//(1,000,000)
System.out.println(String.format("%tF",new Date()));
byte[] bytes = str.getBytes();
for (int i = 0; i < bytes.length; i++) {
System.out.print(bytes[i]+",");
}
System.out.println(Arrays.toString(bytes));
for (byte aByte : bytes) {
System.out.print(aByte+",");
}
}
}
相關文章
- indexedDB 遍歷資料Index
- js資料處理——遍歷JS
- 遠端, 資料夾遍歷
- jquery遍歷得到的 Map 資料,jQuery
- Python字典的遍歷,包括key遍歷/value遍歷/item遍歷/Python
- 遍歷資料夾的幾種方式
- php遍歷資料夾以及子目錄;PHP
- 資料結構 二叉樹遍歷資料結構二叉樹
- MSSQL遍歷資料庫根據列值查詢資料SQL資料庫
- python對常見資料型別的遍歷Python資料型別
- 【C#】-遍歷資料夾簡約的方式C#
- Python遍歷資料夾常用的兩種方法!Python
- matlab遍歷資料夾下的所有檔案Matlab
- js的map遍歷和array遍歷JS
- React中兩種遍歷資料的方法(map、forEach)React
- 遍歷 FlowDocument
- Linuxshell遍歷Linux
- jQuery 遍歷jQuery
- 高效遍歷匹配Json資料,避免巢狀迴圈[轉]JSON巢狀
- 資料結構學習筆記-先序遍歷森林資料結構筆記
- SQL Server通過建立臨時表遍歷更新資料SQLServer
- 【資料結構】二叉樹的建立與遍歷資料結構二叉樹
- 資料結構——樹與二叉樹的遍歷資料結構二叉樹
- python遍歷迭代器自動鏈式處理資料Python
- 用python講解資料結構之樹的遍歷Python資料結構
- 如何遍歷 HashMap,遍歷HashMap 的 5 種最佳方式HashMap
- jQuery的遍歷結構設計之遍歷同胞jQuery
- jQuery的遍歷結構設計之遍歷祖先jQuery
- 利用 python 遍歷多級資料夾處理不同檔案Python
- Vue mock模擬獲取資料 迴圈遍歷檢視VueMock
- 資料結構與演算法-二叉樹遍歷資料結構演算法二叉樹
- 陣列遍歷陣列
- 元組遍歷
- 集合迭代/遍歷
- TDictionary 的 遍歷
- jQuery 遍歷 – 祖先jQuery
- jQuery 遍歷方法jQuery
- jstl forEach遍歷JS