3 回答

TA貢獻(xiàn)1712條經(jīng)驗(yàn) 獲得超3個(gè)贊
使用
String cities[] = stringVariable.split("");
這會(huì)將具有多個(gè)城市的字符串轉(zhuǎn)換為城市的字符串?dāng)?shù)組。

TA貢獻(xiàn)1982條經(jīng)驗(yàn) 獲得超2個(gè)贊
您可以將值傳遞給 java 類(lèi),如下所示,
<jsp:useBean id="sample" scope="page" class="com.mellon.sample" /> // sample is java file name
//-------now pass parameter indnames to your sample java file here sample is the class name and function_name is the method name.
sample.function_name(indnames);

TA貢獻(xiàn)1799條經(jīng)驗(yàn) 獲得超8個(gè)贊
好吧,我知道它是怎么做到的。在 zz 方法下的 dbhandler.java 頁(yè)面中,我添加了:
Connection con = getConnection();
ArrayDescriptor arr= ArrayDescriptor.createDescriptor("ARRAY_COLLECTION",con);
//Here ARRAY_COLLECTION is my array type.
Array array= new ARRAY(arr,con,a);
//'a' is my String[] variable
Callable statement= con.prepareCall("{call zz1(?,?)}");
ps.setArray(1, array);
.
.
.
and so on.
添加回答
舉報(bào)