導航:首頁 > 編程語言 > java如何讀數組

java如何讀數組

發布時間:2023-09-02 19:39:39

『壹』 js 數組 在java中怎麼讀取 急啊!

javascript是前台的腳本語言、java不能直接讀取、你可以將js的數組以一個特殊符號內分割組成一個字元串容傳到後台在用java的split方法轉換成數組!
比如:
js code: var arr = {'a','b','c'}; => var ss = 「a&b&c」;
java code:String ss = "a&b&c";String[] arr = ss.split('&');

『貳』 java高手請進,我有一個map對象,用來存儲一個數組,如何讀取這個數組呢

public class Solve {

public static void main(String[] args) throws Exception {
int []i = {1,2,3};
HashMap<String, int[]> map = new HashMap<String, int[]>();
map.put("array",i);
int []thatArray = map.get("array");
for(int n:thatArray){
System.out.println(n);
}
}

}

『叄』 java .。map集合中放了個數組,怎麼把數組讀出來。

List<Integer> aa = (List<Integer>)map.get("a");
for(int j=0; j<aa.size(); j++){
System.out.println(aa.get(j));
}

int[]bb = (int[])map.get("b");
for(int j=0; j<bb.length; j++){
System.out.println(bb[j]);
}

『肆』 Java怎麼讀取Vector中的元素(元素是一個數組)

for(int i =0; i<n; ++i) //n為數組長度
{
if(a[i] == temp) //temp為要查找 的元素
return i; //i為該元素在數組中的位置
}

『伍』 JAVA_如何讀出對象數組

//: ArrayObject.java

import java.io.*;

public class ArrayObject {
public static void main(String[] args) {

String file="obj.array";

int[] arr = new int[]{1,2,3,5,7,9,};

//寫數組
save(arr,file);

//讀對象
Object read = load(file);

//遍歷數組
if(read != null && read instanceof int[]){
//直接將讀取到的對象轉型成 數組
int[] readArr = (int[])read;
System.out.println("arr length: "+readArr.length);
for(int i=0; i<readArr.length; i++)
System.out.print(readArr[i]+" ");
}
}

//保存對象到文件
static void save(Object o,String file){
try{
ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(file));
oos.writeObject(o);
oos.flush();
oos.close();
}catch(Exception e){e.printStackTrace();}
}

//從文件讀取對象
static Object load(String file){
try{
ObjectInputStream ois = new ObjectInputStream(new FileInputStream(file));
Object o = ois.readObject();
ois.close();
return o;
}catch(Exception e){e.printStackTrace();}
return null;
}
}

閱讀全文

與java如何讀數組相關的資料

熱點內容
網路如何把人捧紅 瀏覽:961
軟體傳輸文件 瀏覽:184
密碼記錄器ios 瀏覽:412
兩個電腦數據怎麼一樣 瀏覽:829
順豐有什麼買東西的app 瀏覽:377
數位板word 瀏覽:939
win7寬頻連接出現多重網路 瀏覽:268
更改程序圖標c語言 瀏覽:629
網路電視偷停怎麼辦 瀏覽:418
linux連接ftp 瀏覽:512
es文件瀏覽器視頻筆記 瀏覽:874
mac無法打開描述文件 瀏覽:134
什麼軟體打文件 瀏覽:53
資料庫無數據變成0 瀏覽:899
名企筆試如何刷編程題 瀏覽:49
js跳到頁面某地 瀏覽:550
jsp展示clob欄位 瀏覽:779
nyx在網路上是什麼意思 瀏覽:145
樂播農業app是什麼 瀏覽:530
編程框架如何開發 瀏覽:136

友情鏈接