- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
String [] itemmas = item.split("~");
String start = "";
String end = "";
String task = "";
String project = "";
String wtype = "";
String desc = "";
try{
start = itemmas[0];
}catch (Exception e){}
try{
end = itemmas[1];
}catch (Exception e){}
try{
task = itemmas[2];
}catch (Exception e){}
try{
project = itemmas[3];
}catch (Exception e){}
try{
wtype = itemmas[4];
}catch (Exception e){}
try{
desc = itemmas[5];
}catch (Exception e){}
if(start==null||start.equals("null")){start="";};
if(end==null||end.equals("null")){end="";};
if(task==null||task.equals("null")){task="";};
if(project==null||project.equals("null")){project="";};
if(wtype==null||wtype.equals("null")){wtype="";};
if(desc==null||desc.equals("null")){desc="";};
artureg 21.01.2011 18:46 # 0
gorsash 21.01.2011 18:53 # +1
artureg 21.01.2011 18:55 # 0
быдлокод в быдлокоде :)
gorsash 21.01.2011 18:59 # −1
artureg 21.01.2011 19:08 # 0
Нельзя допускать саму возможность вот так вот парсить параметры веб формы.
mrvlmor 25.01.2011 23:18 # 0