第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何將從 html 文本框接收到的字符串轉(zhuǎn)換為數(shù)組,然后將其傳輸?shù)酱鎯?chǔ)過(guò)程?

如何將從 html 文本框接收到的字符串轉(zhuǎn)換為數(shù)組,然后將其傳輸?shù)酱鎯?chǔ)過(guò)程?

收到一只叮咚 2023-03-23 13:39:45
我在文本框中收到字符串(例如:“Delhi,Mumbai,Kolkata”),然后將其發(fā)送到 jsp 頁(yè)面,我需要將其轉(zhuǎn)換為數(shù)組,以便數(shù)組的第一個(gè)元素為“Delhi”,第二個(gè)元素為“孟買(mǎi)”等?,F(xiàn)在我想將這個(gè)數(shù)組發(fā)送到我的數(shù)據(jù)庫(kù)處理程序頁(yè)面,在那里我有一個(gè)方法需要接收這個(gè)字符串并使用這個(gè)參數(shù)調(diào)用存儲(chǔ)過(guò)程?;旧?,我不確定如何將字符串轉(zhuǎn)換為數(shù)組,然后將其傳遞給存儲(chǔ)過(guò)程。任何幫助將不勝感激。謝謝。This is my jsp code:String s_word= request.getParameter("Search_Word");            session.setAttribute("ssword", s_word);            String[] indnames = s_word.split(",");//Here i don't know how to send indnames to the dbhandler page.-----------------------------------------------------------------------My method in dbhandler.javapublic static ResultSet zz(String[] a) {        ResultSet rs=null;        try {            Connection con = getConnection();            CallableStatement ps = con.prepareCall("{call zz1(?,?)}");            ps.setArray(1,a);            ps.registerOutParameter(2, OracleTypes.CURSOR);            ps.execute();            rs = ((OracleCallableStatement) ps).getCursor(2);        } catch (Exception e) {        }        return rs;    }存儲(chǔ)過(guò)程需要接收數(shù)組。
查看完整描述

3 回答

?
交互式愛(ài)情

TA貢獻(xiàn)1712條經(jīng)驗(yàn) 獲得超3個(gè)贊

使用

String cities[] = stringVariable.split("");

這會(huì)將具有多個(gè)城市的字符串轉(zhuǎn)換為城市的字符串?dāng)?shù)組。


查看完整回答
反對(duì) 回復(fù) 2023-03-23
?
臨摹微笑

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);


查看完整回答
反對(duì) 回復(fù) 2023-03-23
?
守著星空守著你

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.


查看完整回答
反對(duì) 回復(fù) 2023-03-23
  • 3 回答
  • 0 關(guān)注
  • 211 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)