首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

这段话语为什会报错

2011-12-06 
这段语句为什会报错?intleimjava.lang.Integer.parseInt(lei)switch(leim){case1:out.print( tablebo

这段语句为什会报错?
int   leim   =   java.lang.Integer.parseInt(lei);  
                  switch(leim){  
case   1:   out.print( " <table     border= '1 '   align= 'center '   bordercolor= '#7188e0 '> <tr   bgcolor= 'd1d1ff '> <Th   width= '100 '> 用户名 </th> <th   width= '180 '> 卡号 </th> <th   width= '112 '> 照片 </th> <th   width= '112 '> 卖场 </th> </tr> ");break;

[解决办法]
报什么样的错误????
int leim = java.lang.Integer.parseInt(lei);
这里有try catch吗???
[解决办法]
int leim = java.lang.Integer.parseInt(lei);
switch(leim){
case 1: out.print( " <table border= '1 ' align= 'center ' bordercolor= '#7188e0 '> <tr bgcolor= 'd1d1ff '> <Th width= '100 '> 用户名 </th> <th width= '180 '> 卡号 </th> <th width= '112 '> 照片 </th> <th width= '112 '> 卖场 </th> </tr> ");break;
case 2: out.print( " <table border= '1 ' align= 'center ' bordercolor= '#7188e0 '> <tr bgcolor= 'd1d1ff '> <Th width= '100 '> 用户名 </th> <th width= '180 '> 卡号 </th> <th width= '112 '> 照片 </th> <th width= '112 '> 卖场 </th> </tr> ");break;
}
这样的么???

热点排行