資料遍歷
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
- 遠端, 資料夾遍歷
- c++ 遍歷資料夾C++
- Matlab對資料夾的層次遍歷和深度遍歷Matlab
- jquery遍歷得到的 Map 資料,jQuery
- Java 資料夾遞迴遍歷Java遞迴
- PHP遞迴遍歷資料夾PHP遞迴
- 資料結構與演算法——二叉樹的前序遍歷,中序遍歷,後序遍歷資料結構演算法二叉樹
- 遍歷資料夾的幾種方式
- php遍歷資料夾以及子目錄;PHP
- Python字典的遍歷,包括key遍歷/value遍歷/item遍歷/Python
- 資料結構 二叉樹遍歷資料結構二叉樹
- MSSQL遍歷資料庫根據列值查詢資料SQL資料庫
- 資料結構之遍歷二叉樹資料結構二叉樹
- C/C++遍歷資料夾和檔案C++
- 【C#】-遍歷資料夾簡約的方式C#
- js的map遍歷和array遍歷JS
- java去掉陣列中重複的資料和遍歷資料Java陣列
- 二叉樹建立,前序遍歷,中序遍歷,後序遍歷 思路二叉樹
- 二叉樹的建立、前序遍歷、中序遍歷、後序遍歷二叉樹
- python對常見資料型別的遍歷Python資料型別
- Python遍歷資料夾常用的兩種方法!Python
- matlab遍歷資料夾下的所有檔案Matlab
- Related to Oracle SQL 關於樹形資料的遍歷OracleSQL
- jQuery 遍歷jQuery
- 遍歷 FlowDocument
- Javascript樹(一):廣度遍歷和深度遍歷JavaScript
- jQuery遍歷函式,javascript中的each遍歷jQuery函式JavaScript
- 資料結構——樹與二叉樹的遍歷資料結構二叉樹
- React中兩種遍歷資料的方法(map、forEach)React
- 【資料結構】二叉樹的建立與遍歷資料結構二叉樹
- SQL Server通過建立臨時表遍歷更新資料SQLServer
- $.each()方法遍歷json格式資料程式碼例項JSON
- jQuery遍歷json格式資料完整程式碼例項jQueryJSON
- Python資料結構——解析樹及樹的遍歷Python資料結構
- 資料結構學習筆記-先序遍歷森林資料結構筆記
- jQuery的遍歷結構設計之遍歷同胞jQuery