从文件中读取时重试代码

时间:2011-03-24 12:43:27

标签: java sockets

我正在通过逐个读取文件中的这些项目并将它们发送到返回结果的第三方程序来进行多项目查询。

但是,我在其他项目上遇到套接字错误,所以我希望我的代码重试我在该特定项目上遇到的每个套接字连接错误。

这是我的代码的外观:

if ((result[0][0] != null) && (result.length > 0)) {
    //System.out.println("car Record length \n" + result.length);
    startDate = new Date();

  for (int x = 0; x < result.length; x++) {
     // Retrieve status description of the box
     carmake= Integer.valueOf(result[x][1].toString()).intValue();
     carmodel = (String) statusHashMap.get(result[x][1].toString());
     year = (String) serviceProviderHashMap.get(result[x][5].toString());
     dealerName = (String) dealerHashMap.get(result[x][6].toString());
  }

0 个答案:

没有答案