English 中文(简体)
Java 书目
原标题:Java Swift BICDownload exitcode=0

http://www.swift.com/solutions/messaging/information_products/image_doc/BIC_DA_int_spec_apr09.pdf”rel=“nofollow noretinger” 快速自动化

所有ok假设情景都奏效,但在简单错误情景假设情景测试中, j样本客户申请中的代码为0。

该法典有什么错误?

/* * Created on Mar 2, 2007 * S.W.I.F.T. s.c.r.l. */

public class BICDownloader {
public static void main(String[] args) { ... try { ... // Executing the method. statusCode = client.executeMethod(method);

  if (statusCode != HttpStatus.SC_OK) {
   // Handling HTTP error 404 and 500 not covered in this example
   // All http error cause in this example exit with status 1.
   System.err.println("Method failed: " + method.getStatusLine()+
   "
" + method.getResponseBodyAsString());
   System.out.println(method.getRequestCharSet()+
  "
" + method.getRequestHeader("").toString());
   exitcode = 1; 
  }
  else {
 ...
  }      
 } catch (HttpException e) {
  exitcode = 2;
  System.err.println("Fatal HTTP Error: " + e.getMessage());
  e.printStackTrace();
 } catch (IOException e) {
  exitcode = 3;
  System.err.println("Fatal I/O error: " + e.getMessage());
  e.printStackTrace();
 } finally {
  // Release the connection.
  method.releaseConnection();
  System.exit(exitcode);
 } 
 System.out.println("Dowload done");  

} }

最佳回答

问题是由隐蔽的Null PointerException造成的,问题的根源在于法典的阻碍。

        System.out.println(method.getRequestCharSet()+
        "
" + method.getRequestHeader("").toString());
        exitcode = 1;

我选择的解决办法是改变教学方法。getRequestHeader(“”)toString() to Arrays.toString(method.getRequestHeaders()) ,并增加条款}捕获量(Exception e)。

问题回答

暂无回答




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签