- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将XML文件导入名为Junifer的外部系统时遇到问题。系统已设置为根据我们预先定义的内容接受某些字符串,整数和值。
正在上传的XML文件如下:
<Customer>
<UniqueId>1001</UniqueId>
<ContractId>10012</ContractId>
<ExternalCustomerReference>CustomerREF</ExternalCustomerReference>
<CustomerReference></CustomerReference>
<CompanyName>Name of Company</CompanyName>
<CompanyRegistrationNumber>0000000</CompanyRegistrationNumber>
<CustomerClass>Non Micro</CustomerClass>
<CreditScore></CreditScore>
<BusinessStartDate>12/05/2009</BusinessStartDate>
<BusinessType>Limited</BusinessType>
<Account>
<Contact>
<ContactType>Primary Customer</ContactType>
<IsPrimaryContact>True</IsPrimaryContact>
<ContactSurname>Surname</ContactSurname>
<ContactFirstname>Name</ContactFirstname>
<ContactTitle>Mr</ContactTitle>
<ContactEmailAddress>me@me.com</ContactEmailAddress>
<ContactDateOfBirth></ContactDateOfBirth>
<ContactPrimaryTelephoneNumber>01234567890</ContactPrimaryTelephoneNumber>
<ContactSecondaryTelephoneNumber>01234567890</ContactSecondaryTelephoneNumber>
<BillDeliveryMethod>E-bill</BillDeliveryMethod>
<CommunicationDeliveryMethod>Email</CommunicationDeliveryMethod>
<Address1>Line1</Address1>
<Address2>Line2</Address2>
<Address3>Line3</Address3>
<Address4>Line4</Address4>
<Address5></Address5>
<AddressPostcode>PC1 2PC</AddressPostcode>
</Contact>
<PaymentMethod>
<PaymentMethod>Direct Debit</PaymentMethod>
<BillingCycle></BillingCycle>
<BankAccountName>Bank</BankAccountName>
<BankAccountNumber>22222222</BankAccountNumber>
<BankSortCode>111111</BankSortCode>
<DirectDebitPaymentDay>1</DirectDebitPaymentDay>
<DirectDebitPayment>339.204</DirectDebitPayment>
</PaymentMethod>
<Property>
<PropertyAddress1>Property</PropertyAddress1>
<PropertyAddress2></PropertyAddress2>
<PropertyAddress3>Property3</PropertyAddress3>
<PropertyAddress4>Property4</PropertyAddress4>
<PropertyAddress5>Property5</PropertyAddress5>
<PropertyAddressPostcode>PC1 2PC</PropertyAddressPostcode>
<SupplyCapacity>0.00</SupplyCapacity>
<MeterPoint>
<MeterPointIdentifier>1234567890</MeterPointIdentifier>
<ProfileClass>03</ProfileClass>
<Fuel>Electricity</Fuel>
<TprMappingSet>Tracker</TprMappingSet>
<HhRateDefinition></HhRateDefinition>
<AnnualConsumptions>
<Consumption>20000kWh</Consumption>
<RateName>Standard</RateName>
</AnnualConsumptions>
<Agreement>
<AgreementReference>0.0</AgreementReference>
<AgreementStartDate>27/11/2019</AgreementStartDate>
<AgreementEndDate>26/11/2022</AgreementEndDate>
<AgreementTerm>36</AgreementTerm>
<ProductBundleRef>ElecTracker</ProductBundleRef>
<BrokerCode>BROKER1</BrokerCode>
<BrokerAgentReference>0.0</BrokerAgentReference>
<BrokerReference>Broker</BrokerReference>
<DateOfSale>28/10/2019</DateOfSale>
<ProductItems>
<ProductItem>
<ProductItemReference>ENERGY</ProductItemReference>
<Rates>
<Rate>
<Rate>19.75</Rate>
<RateName>Standard</RateName>
</Rate>
</Rates>
</ProductItem>
<ProductItem>
<ProductItemReference>STANDING-CHARGE</ProductItemReference>
<Rates>
<Rate>
<Rate>33.00</Rate>
</Rate>
</Rates>
</ProductItem>
</ProductItems>
</Agreement>
</MeterPoint>
</Property>
</Account>
</Customer>
</Customers>
java.lang.NumberFormatException: For input string: "
"
at java.lang.NumberFormatException.forInputString(Unknown Source)
at java.lang.Integer.parseInt(Unknown Source)
at java.lang.Integer.parseInt(Unknown Source)
at com.junifer.thor.processing.task.enrolment.CommercialEnrolmentContext.getInteger(CommercialEnrolmentContext.java:492)
at com.junifer.thor.processing.task.enrolment.CommercialEnrolmentContext.resolveCustomerElement(CommercialEnrolmentContext.java:140)
at com.junifer.thor.processing.task.enrolment.CommercialEnrolmentContext.build(CommercialEnrolmentContext.java:94)
at com.junifer.thor.processing.task.enrolment.CommercialEnrolmentOperationsImpl.lambda$buildEnrolmentContextsFromFile$933(CommercialEnrolmentOperationsImpl.java:185)
at com.junifer.thor.processing.task.core.DefaultTaskExecutionContext.executeSubTask(DefaultTaskExecutionContext.java:132)
at com.junifer.thor.processing.task.core.DefaultTaskExecutionContext.executeSubTask(DefaultTaskExecutionContext.java:119)
at com.junifer.thor.processing.task.enrolment.CommercialEnrolmentOperationsImpl.buildEnrolmentContextsFromFile(CommercialEnrolmentOperationsImpl.java:181)
at com.junifer.thor.processing.task.enrolment.CommercialEnrolmentImportTask.executeProcessFile(CommercialEnrolmentImportTask.java:49)
at com.junifer.thor.processing.task.core.LogicalFileBatchTaskComponent.lambda$execute$17(LogicalFileBatchTaskComponent.java:80)
at com.junifer.thor.processing.task.core.DefaultTaskExecutionContext.executeSubTask(DefaultTaskExecutionContext.java:132)
at com.junifer.thor.processing.task.core.LogicalFileBatchTaskComponent.execute(LogicalFileBatchTaskComponent.java:71)
at com.junifer.thor.processing.task.core.TaskExecutor$TaskRunnable.executeTask(TaskExecutor.java:674)
at com.junifer.thor.processing.task.core.TaskExecutor$TaskRunnable.runWithLogging(TaskExecutor.java:623)
at com.junifer.thor.processing.task.core.TaskExecutor$TaskRunnable.run(TaskExecutor.java:595)
at org.jboss.netty.util.ThreadRenamingRunnable.run(ThreadRenamingRunnable.java:113)
at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
最佳答案
基于该堆栈跟踪,我想说<CreditScore></CreditScore>
应该包含一个整数值,例如<CreditScore>0</CreditScore>
顺便说一句,£339.204 对于<DirectDebitPayment>
似乎小数点太多<AgreementReference>
和<BrokerAgentReference>
是可为空的文本字段,因此它们不太可能需要包含十进制值(尽管不是错误)。
关于xml - 输入字符串Junifer导入的NumberFormatException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58735240/
我正在尝试使用 Integer.parseInt(simNumber) 将 String 转换为 int,但我收到错误消息。如何将 String 转换为 int?我在网上搜索了一下,找到了Intege
每次我尝试启动我的代码时,我总是遇到同样的错误: java.lang.NumberFormatException: For input string: "x" at java.lang.Numbe
在检查我的错误处理代码时偶然发现了这个。当您调用 Integer.parseInt(null) 时,Java 抛出 NumberFormatException 而 Float.parseFloat(n
如果有人可以看看我在 Selenium 方面遇到的问题。我尝试使用以下方法访问上述计算器中的结果: public String getAttributeValue(WebElement element
嗯,我很无聊,所以我想做一个二进制>十进制转换器。我将转换器的上限设置为 30 位数字 (1073741823) 或 (0111111111111111111111111111111)。我遇到的问题是
在以下代码中,Clojure (1.2) 打印出错误消息: (try (let [value "1,a"] (map #(Integer/parseInt %) (.split value
String str="123456.7855456677"; ParsePosition parsePosition = new ParsePosition(0); NumberFormat num
代码: String myVar = "1255763710960"; int myTempVar=0; try { myTempVar = Integer.valueOf(myVar); }
我在NumberFormatException代码中收到Grails错误,该错误是将电影分类到数据库中。该错误表明它来自cron插件。我已经完成了研究,并且一直在尝试使用NumberFormatExc
我在将字符串解析为原语时遇到问题。 File file1 = new File("bankData.txt"); Scanner sc = new Scanner(fi
所以我试图从日期列表中查找最新日期,但我不断收到 NumberFormatException。有什么办法可以解决这个问题吗? import java.util.*; public class Date
如果使用变量 bin1 它不会转换,但是如果我用 bin2 替换参数,它似乎可以工作。 我尝试使用 long 而不是 int。还是一样。 public class Test{ public s
我正在尝试找出如何在代码中捕获数字格式异常错误,这样如果用户在字符串中输入字母并且我的程序尝试将其解析为 int 我的程序将不会抛出错误而是停止并返回一个 boolean 值。我还试图了解,如果 tr
该程序的本质目的是将学生信息写入文件并从同一文件中读取。该程序包括一个 if 语句,用于判断学生是否处于良好信誉或留校察看状态,每个语句都有各自的文件(goodstand.txt 和 probatio
我正在用 Python/WLST 编写代码,以自动连接、启动和停止 weblogic 中的托管服务器。当我启动 Python 时,出现以下错误。 异常的含义是什么?我该如何解决它? Initializ
这是我的代码: public void setAreaAccessPoints(){ String mac = "",essid = "",status = ""; int stre
我正在用 Java 开发一个应用程序,发现了这个奇怪的行为: 如果通过控制面板将区域设置格式设置为匈牙利语(系统默认值),我会收到此异常,但如果我将其设置为英语格式,则它可以正常工作。也适用于虚拟 M
我正在尝试制作一个计算器应用程序,但不幸的是我无法解析字符串。 应用程序接受输入并将其显示在 EditText et2 中。当按下“等于”键时,计算器将执行以下工作。 et2 = (EditText)
我有一个文件,其中包含许多电影标题及其年份、5 星评级和长度。我正在尝试读取该文件并将标题、年份、评级和长度存储为变量。我遇到的问题是在我的检索年份的代码中。该代码可以编译,但在运行时,当它到达具有多
我正在解决亚马逊 Interview Street 网站上的 Connected Sets 问题 https://amazon.interviewstreet.com/challenges我的代码对于
我是一名优秀的程序员,十分优秀!