I use a StringTokenizer, to seperate Strings and read out the information. My problem is: the second loop does not read out the last number.
(this is just an example, i have the same problem in my real project)
Output first loop:
69.OK.syncro_asa.1369804.txt ==> 1369804
68.OK.syncro_asa.1346367.txt ==> 1346367
549142.OK.SPB_ASN.1222427.txt ==> 1222427
...
Output second loop:
69.syncro_asa.1369804.txt ==> null
68.syncro_asa.1346367.txt ==> null
549142.SPB_ASN.1222427.txt ==> null
...
Above ist the Output of the following code: (it's a JSP-Site)
for (int i = 0;i<infoLogs.countEDI(); i ++)
{
out.println(infoLogs.getEDI(i) +" ==> "+ d_log.getEDInr(i) +" ("+i+")<p>");
}
%>
</p>
</p>
</p>
<%
for (int i = 0;i<info.countEDI(); i ++)
{
out.println(info.getEDI(i) +" ==> "+ d.getEDInr(i) +" ("+i+")<p>");
}
The following methods are importatnt:
class d_log:
public static String getEDInr(int y)
{
String ediNr = stringTeilen(infoLogs.getEDI(y), 4);
return ediNr;
}
class d:
public static String getEDInr(int y)
{
String EDInr = stringTeilen(info.getEDI(y), 3);
return EDInr;
}
both methods use the same Tokenizer:
public static String stringTeilen(String y, int x)
{
StringTokenizer token = new StringTokenizer(y, ".");
String[] Dateiname = new String[token.countTokens()];
for ( int i=0; i< token.countTokens(); i++ )
{
Dateiname[i] = token.nextToken();
}
return Dateiname[x-1];
}