樓上說的對啊,時間問題,祝你好運啦!
創(chuàng)新互聯(lián)公司專注于企業(yè)網(wǎng)絡營銷推廣、網(wǎng)站重做改版、和順網(wǎng)站定制設(shè)計、自適應品牌網(wǎng)站建設(shè)、H5高端網(wǎng)站建設(shè)、商城網(wǎng)站建設(shè)、集團公司官網(wǎng)建設(shè)、外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應式網(wǎng)頁設(shè)計等建站業(yè)務,價格優(yōu)惠性價比高,為和順等各大城市提供網(wǎng)站開發(fā)制作服務。
PS:樓主不是我說你,這事早干嘛了~~
現(xiàn)在網(wǎng)絡很是發(fā)達,最近很多學生陸續(xù)開學,校園卡作為學校內(nèi)比較常用的工具,其實也可以在網(wǎng)上充值,在網(wǎng)上充值校園卡。
手機:華為p30
系統(tǒng):EMUI 9.1
軟件:校園卡支付寶9.1
1、打開手機上的支付寶。
2、在上方的搜索欄中搜索校園生活。
3、選擇下方出現(xiàn)的搜索結(jié)果校園一卡通。
4、選擇自己的學校。
5、在接下來中輸入自己的身份信息。
6、最后根據(jù)提示點擊立即充值即可完成。
import?java.text.DecimalFormat;
/**
*?類名為StudentCard,屬性包含:卡號,學號,學生姓名、余額等屬性。
*?編寫兩個帶參的構(gòu)造方法,一個構(gòu)造方法實現(xiàn)給4個屬性賦值,另外一個構(gòu)造方法實現(xiàn)給卡號、學號和學生姓名三個屬性賦值。
*?編寫一個方法,實現(xiàn)輸出學生卡的基本信息的功能。
*
*/
public?class?Hello?{
public?static?void?main(String[]?args)?{
StudentCard?sc?=?new?StudentCard("1","111","aaa",22);
sc.print();
}
}
class?StudentCard{
private?String?kahao;?//卡號
private?String?xuehao;//學號
private?String?studentName;
private?String?yue;//余額
public?StudentCard(String?kh,?String?xh,?String?sn,?float?ye){
try?{
this.kahao?=?String.valueOf((double)1/100).replaceAll("\\.",?"");
}?catch?(Exception?e)?{
this.kahao?=?kh;
}
this.xuehao?=?xh;
this.studentName?=?sn;
this.yue?=?new?DecimalFormat("0.00").format(ye);
}
public?StudentCard(String?kh,?String?xh,?String?sn){
try?{
this.kahao?=?String.valueOf((double)1/100).replaceAll("\\.",?"");
}?catch?(Exception?e)?{
this.kahao?=?kh;
}
this.xuehao?=?xh;
this.studentName?=?sn;
}
public?void?print(){
System.out.println("學生卡號:"?+?this.kahao+"\n學生學號:"+this.xuehao+"\n學生姓名:"+this.studentName+"\n學生余額:"+this.yue);
}
public?String?getKahao()?{
return?kahao;
}
public?void?setKahao(String?kahao)?{
this.kahao?=?kahao;
}
public?String?getXuehao()?{
return?xuehao;
}
public?void?setXuehao(String?xuehao)?{
this.xuehao?=?xuehao;
}
public?String?getYue()?{
return?yue;
}
public?void?setYue(String?yue)?{
this.yue?=?yue;
}
public?String?getStudentName()?{
return?studentName;
}
public?void?setStudentName(String?studentName)?{
this.studentName?=?studentName;
}
}
=========下面是輸出內(nèi)容=========
學生卡號:001
學生學號:001
學生姓名:張三
學生余額:22.00
CallableStatement???proc???=???null;?????
con???=???connectionPool.getConnection();?????
proc???=???con.prepareCall("{???call???set_death_age(?,????)???}");?????
proc.setString(1,???XXX);?????
proc.setInt(2,???XXx);?????
...???
proc.execute();
給你找了個示例代碼