首页 \ 问答 \ XML Pull Parser异常 - kSOAP2(XML Pull Parser Exception - kSOAP2)

XML Pull Parser异常 - kSOAP2(XML Pull Parser Exception - kSOAP2)

尝试使用kSOAP2Android访问Web服务时,我收到了XmlPullParserException

以下是我的代码:

NAMESPACE = "http://" + "10.99.60.52" + ":" + "8080" +"/ws/EmployeeServices?wsdl";
URL = "http://" + "10.99.60.52" + ":" + "8080" +"/ws/EmployeeServices"; 
SOAP_ACTION = "EmployeeServicesPortBinding";
METHOD_NAME = "authorize";

SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);

request.addProperty("employeeId", userID);
request.addProperty("localeId", localeID);
request.addProperty("organizationId", organisationID);
request.addProperty("retailLocationId", retailLoationID);
request.addProperty("workstationId", workstationID);
request.addProperty("LoginInput", userID);
request.addProperty("Password", password);
request.addProperty("LoginInputType", loginInputType);
request.addProperty("Privilege", privilege);

SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11); 
envelope.setOutputSoapObject(request);

HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);

try {
    androidHttpTransport.call(SOAP_ACTION, envelope);

    Object obj = envelope.bodyIn;
    SoapObject response = null;
    if (obj instanceof SoapObject)
        response = (SoapObject) (envelope.bodyIn);

    responseCode = (response != null) ? response.getProperty("UserAuthorizeResponse").toString() : "Failed";

    Toast.makeText(getApplicationContext(), responseCode, Toast.LENGTH_SHORT).show();   //Testing

} catch (Exception e) {
    Toast.makeText(getApplicationContext(), "Exception", Toast.LENGTH_SHORT).show();    //Testing
    System.out.println("");
}

WSDL:

<?xml version="1.0" encoding="UTF-8" ?> 
- <!--  Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.7-b01-. 
  --> 
- <!--  Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.7-b01-. 
  --> 
- <definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://ws.xx.com/xservices/EmployeeServices" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://ws.xx.com/xservices/EmployeeServices" name="EmployeeServices">
- <types>
- <xsd:schema>
  <xsd:import namespace="http://ws.xx.com/xservices/EmployeeServices" schemaLocation="http://10.99.60.52:8080/ws/EmployeeServices?xsd=1" /> 
  </xsd:schema>
  </types>
- <message name="changePassword">
  <part name="parameters" element="tns:changePassword" /> 
  </message>
- <message name="changePasswordResponse">
  <part name="parameters" element="tns:changePasswordResponse" /> 
  </message>
- <message name="getCommissionedAssociates">
  <part name="parameters" element="tns:getCommissionedAssociates" /> 
  </message>
- <message name="getCommissionedAssociatesResponse">
  <part name="parameters" element="tns:getCommissionedAssociatesResponse" /> 
  </message>
- <message name="authorize">
  <part name="parameters" element="tns:authorize" /> 
  </message>
- <message name="authorizeResponse">
  <part name="parameters" element="tns:authorizeResponse" /> 
  </message>
- <message name="deleteMessage">
  <part name="parameters" element="tns:deleteMessage" /> 
  </message>
- <message name="deleteMessageResponse">
  <part name="parameters" element="tns:deleteMessageResponse" /> 
  </message>
- <message name="updateMessage">
  <part name="parameters" element="tns:updateMessage" /> 
  </message>
- <message name="updateMessageResponse">
  <part name="parameters" element="tns:updateMessageResponse" /> 
  </message>
- <message name="addMessage">
  <part name="parameters" element="tns:addMessage" /> 
  </message>
- <message name="addMessageResponse">
  <part name="parameters" element="tns:addMessageResponse" /> 
  </message>
- <message name="validateEmp">
  <part name="parameters" element="tns:validateEmp" /> 
  </message>
- <message name="validateEmpResponse">
  <part name="parameters" element="tns:validateEmpResponse" /> 
  </message>
- <message name="authenticate">
  <part name="parameters" element="tns:authenticate" /> 
  </message>
- <message name="authenticateResponse">
  <part name="parameters" element="tns:authenticateResponse" /> 
  </message>
- <portType name="EmployeeServices">
- <operation name="changePassword">
  <input message="tns:changePassword" /> 
  <output message="tns:changePasswordResponse" /> 
  </operation>
- <operation name="getCommissionedAssociates">
  <input message="tns:getCommissionedAssociates" /> 
  <output message="tns:getCommissionedAssociatesResponse" /> 
  </operation>
- <operation name="authorize">
  <input message="tns:authorize" /> 
  <output message="tns:authorizeResponse" /> 
  </operation>
- <operation name="deleteMessage">
  <input message="tns:deleteMessage" /> 
  <output message="tns:deleteMessageResponse" /> 
  </operation>
- <operation name="updateMessage">
  <input message="tns:updateMessage" /> 
  <output message="tns:updateMessageResponse" /> 
  </operation>
- <operation name="addMessage">
  <input message="tns:addMessage" /> 
  <output message="tns:addMessageResponse" /> 
  </operation>
- <operation name="validateEmp">
  <input message="tns:validateEmp" /> 
  <output message="tns:validateEmpResponse" /> 
  </operation>
- <operation name="authenticate">
  <input message="tns:authenticate" /> 
  <output message="tns:authenticateResponse" /> 
  </operation>
  </portType>
- <binding name="EmployeeServicesPortBinding" type="tns:EmployeeServices">
  <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" /> 
- <operation name="changePassword">
  <soap:operation soapAction="" /> 
- <input>
  <soap:body use="literal" /> 
  </input>
- <output>
  <soap:body use="literal" /> 
  </output>
  </operation>
- <operation name="getCommissionedAssociates">
  <soap:operation soapAction="" /> 
- <input>
  <soap:body use="literal" /> 
  </input>
- <output>
  <soap:body use="literal" /> 
  </output>
  </operation>
- <operation name="authorize">
  <soap:operation soapAction="" /> 
- <input>
  <soap:body use="literal" /> 
  </input>
- <output>
  <soap:body use="literal" /> 
  </output>
  </operation>
- <operation name="deleteMessage">
  <soap:operation soapAction="" /> 
- <input>
  <soap:body use="literal" /> 
  </input>
- <output>
  <soap:body use="literal" /> 
  </output>
  </operation>
- <operation name="updateMessage">
  <soap:operation soapAction="" /> 
- <input>
  <soap:body use="literal" /> 
  </input>
- <output>
  <soap:body use="literal" /> 
  </output>
  </operation>
- <operation name="addMessage">
  <soap:operation soapAction="" /> 
- <input>
  <soap:body use="literal" /> 
  </input>
- <output>
  <soap:body use="literal" /> 
  </output>
  </operation>
- <operation name="validateEmp">
  <soap:operation soapAction="" /> 
- <input>
  <soap:body use="literal" /> 
  </input>
- <output>
  <soap:body use="literal" /> 
  </output>
  </operation>
- <operation name="authenticate">
  <soap:operation soapAction="" /> 
- <input>
  <soap:body use="literal" /> 
  </input>
- <output>
  <soap:body use="literal" /> 
  </output>
  </operation>
  </binding>
- <service name="EmployeeServices">
- <port name="EmployeeServicesPort" binding="tns:EmployeeServicesPortBinding">
  <soap:address location="http://10.99.60.52:8080/ws/EmployeeServices" /> 
  </port>
  </service>
  </definitions>

以下是我从SOAP UI发送的SOAP请求:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:emp="http://ws.xx.com/xservices/EmployeeServices">
   <soapenv:Header/>
   <soapenv:Body>
      <emp:authorize>
         <!--Optional:-->
         <emp:ServiceContext>
            <!--Optional:-->
            <employeeId>8511</employeeId>
            <!--Optional:-->
            <localeId>en_US</localeId>
            <!--Optional:-->
            <organizationId>1</organizationId>
            <!--Optional:-->
            <retailLocationId>900</retailLocationId>
            <!--Optional:-->
            <workstationId>1</workstationId>
         </emp:ServiceContext>
         <!--Zero or more repetitions:-->
         <LoginInput>8511</LoginInput>
         <!--Optional:-->
         <Password>1</Password>
         <!--Optional:-->
         <LoginInputType>KEYBOARD</LoginInputType>
         <!--Optional:-->
         <Privilege>SELL_ITEM</Privilege>
      </emp:authorize>
   </soapenv:Body>
</soapenv:Envelope>

这是我的SOAP响应,来自SOAP UI:

<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
   <S:Body>
      <ns2:authorizeResponse xmlns:ns2="http://ws.xx.com/xservices/EmployeeServices">
         <UserAuthorizeResponse>
            <userAuthorized>true</userAuthorized>
         </UserAuthorizeResponse>
      </ns2:authorizeResponse>
   </S:Body>
</S:Envelope>

这一行抛出异常:

androidHttpTransport.call(SOAP_ACTION, envelope);

更新错误:

expected: END_TAG {http://schemas.xmlsoap.org/soap/envelope/}Body (position:END_TAG </{http://schemas.xmlsoap.org/soap/envelope/}S:Fault>@1:314 in java.io.InputStreamReader@40ec86e0) 

org.xmlpull.v1.XmlPullParserException: expected: END_TAG {http://schemas.xmlsoap.org/soap/envelope/}Body (position:END_TAG </{http://schemas.xmlsoap.org/soap/envelope/}S:Fault>@1:313 in java.io.InputStreamReader@3e89c3) 
    at org.kxml2.io.KXmlParser.exception(Unknown Source)
    at org.kxml2.io.KXmlParser.require(Unknown Source)
    at org.ksoap2.SoapEnvelope.parse(Unknown Source)
    at org.ksoap2.transport.Transport.parseResponse(Unknown Source)
    at org.ksoap2.transport.HttpTransportSE.call(Unknown Source)
    at SOAPClass.main(SOAPClass.java:55)

谁能澄清我做错了什么?


I'm getting XmlPullParserException when trying to hit the web service from Android, using kSOAP2.

Below is my code:

NAMESPACE = "http://" + "10.99.60.52" + ":" + "8080" +"/ws/EmployeeServices?wsdl";
URL = "http://" + "10.99.60.52" + ":" + "8080" +"/ws/EmployeeServices"; 
SOAP_ACTION = "EmployeeServicesPortBinding";
METHOD_NAME = "authorize";

SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);

request.addProperty("employeeId", userID);
request.addProperty("localeId", localeID);
request.addProperty("organizationId", organisationID);
request.addProperty("retailLocationId", retailLoationID);
request.addProperty("workstationId", workstationID);
request.addProperty("LoginInput", userID);
request.addProperty("Password", password);
request.addProperty("LoginInputType", loginInputType);
request.addProperty("Privilege", privilege);

SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11); 
envelope.setOutputSoapObject(request);

HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);

try {
    androidHttpTransport.call(SOAP_ACTION, envelope);

    Object obj = envelope.bodyIn;
    SoapObject response = null;
    if (obj instanceof SoapObject)
        response = (SoapObject) (envelope.bodyIn);

    responseCode = (response != null) ? response.getProperty("UserAuthorizeResponse").toString() : "Failed";

    Toast.makeText(getApplicationContext(), responseCode, Toast.LENGTH_SHORT).show();   //Testing

} catch (Exception e) {
    Toast.makeText(getApplicationContext(), "Exception", Toast.LENGTH_SHORT).show();    //Testing
    System.out.println("");
}

WSDL:

<?xml version="1.0" encoding="UTF-8" ?> 
- <!--  Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.7-b01-. 
  --> 
- <!--  Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.7-b01-. 
  --> 
- <definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://ws.xx.com/xservices/EmployeeServices" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://ws.xx.com/xservices/EmployeeServices" name="EmployeeServices">
- <types>
- <xsd:schema>
  <xsd:import namespace="http://ws.xx.com/xservices/EmployeeServices" schemaLocation="http://10.99.60.52:8080/ws/EmployeeServices?xsd=1" /> 
  </xsd:schema>
  </types>
- <message name="changePassword">
  <part name="parameters" element="tns:changePassword" /> 
  </message>
- <message name="changePasswordResponse">
  <part name="parameters" element="tns:changePasswordResponse" /> 
  </message>
- <message name="getCommissionedAssociates">
  <part name="parameters" element="tns:getCommissionedAssociates" /> 
  </message>
- <message name="getCommissionedAssociatesResponse">
  <part name="parameters" element="tns:getCommissionedAssociatesResponse" /> 
  </message>
- <message name="authorize">
  <part name="parameters" element="tns:authorize" /> 
  </message>
- <message name="authorizeResponse">
  <part name="parameters" element="tns:authorizeResponse" /> 
  </message>
- <message name="deleteMessage">
  <part name="parameters" element="tns:deleteMessage" /> 
  </message>
- <message name="deleteMessageResponse">
  <part name="parameters" element="tns:deleteMessageResponse" /> 
  </message>
- <message name="updateMessage">
  <part name="parameters" element="tns:updateMessage" /> 
  </message>
- <message name="updateMessageResponse">
  <part name="parameters" element="tns:updateMessageResponse" /> 
  </message>
- <message name="addMessage">
  <part name="parameters" element="tns:addMessage" /> 
  </message>
- <message name="addMessageResponse">
  <part name="parameters" element="tns:addMessageResponse" /> 
  </message>
- <message name="validateEmp">
  <part name="parameters" element="tns:validateEmp" /> 
  </message>
- <message name="validateEmpResponse">
  <part name="parameters" element="tns:validateEmpResponse" /> 
  </message>
- <message name="authenticate">
  <part name="parameters" element="tns:authenticate" /> 
  </message>
- <message name="authenticateResponse">
  <part name="parameters" element="tns:authenticateResponse" /> 
  </message>
- <portType name="EmployeeServices">
- <operation name="changePassword">
  <input message="tns:changePassword" /> 
  <output message="tns:changePasswordResponse" /> 
  </operation>
- <operation name="getCommissionedAssociates">
  <input message="tns:getCommissionedAssociates" /> 
  <output message="tns:getCommissionedAssociatesResponse" /> 
  </operation>
- <operation name="authorize">
  <input message="tns:authorize" /> 
  <output message="tns:authorizeResponse" /> 
  </operation>
- <operation name="deleteMessage">
  <input message="tns:deleteMessage" /> 
  <output message="tns:deleteMessageResponse" /> 
  </operation>
- <operation name="updateMessage">
  <input message="tns:updateMessage" /> 
  <output message="tns:updateMessageResponse" /> 
  </operation>
- <operation name="addMessage">
  <input message="tns:addMessage" /> 
  <output message="tns:addMessageResponse" /> 
  </operation>
- <operation name="validateEmp">
  <input message="tns:validateEmp" /> 
  <output message="tns:validateEmpResponse" /> 
  </operation>
- <operation name="authenticate">
  <input message="tns:authenticate" /> 
  <output message="tns:authenticateResponse" /> 
  </operation>
  </portType>
- <binding name="EmployeeServicesPortBinding" type="tns:EmployeeServices">
  <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" /> 
- <operation name="changePassword">
  <soap:operation soapAction="" /> 
- <input>
  <soap:body use="literal" /> 
  </input>
- <output>
  <soap:body use="literal" /> 
  </output>
  </operation>
- <operation name="getCommissionedAssociates">
  <soap:operation soapAction="" /> 
- <input>
  <soap:body use="literal" /> 
  </input>
- <output>
  <soap:body use="literal" /> 
  </output>
  </operation>
- <operation name="authorize">
  <soap:operation soapAction="" /> 
- <input>
  <soap:body use="literal" /> 
  </input>
- <output>
  <soap:body use="literal" /> 
  </output>
  </operation>
- <operation name="deleteMessage">
  <soap:operation soapAction="" /> 
- <input>
  <soap:body use="literal" /> 
  </input>
- <output>
  <soap:body use="literal" /> 
  </output>
  </operation>
- <operation name="updateMessage">
  <soap:operation soapAction="" /> 
- <input>
  <soap:body use="literal" /> 
  </input>
- <output>
  <soap:body use="literal" /> 
  </output>
  </operation>
- <operation name="addMessage">
  <soap:operation soapAction="" /> 
- <input>
  <soap:body use="literal" /> 
  </input>
- <output>
  <soap:body use="literal" /> 
  </output>
  </operation>
- <operation name="validateEmp">
  <soap:operation soapAction="" /> 
- <input>
  <soap:body use="literal" /> 
  </input>
- <output>
  <soap:body use="literal" /> 
  </output>
  </operation>
- <operation name="authenticate">
  <soap:operation soapAction="" /> 
- <input>
  <soap:body use="literal" /> 
  </input>
- <output>
  <soap:body use="literal" /> 
  </output>
  </operation>
  </binding>
- <service name="EmployeeServices">
- <port name="EmployeeServicesPort" binding="tns:EmployeeServicesPortBinding">
  <soap:address location="http://10.99.60.52:8080/ws/EmployeeServices" /> 
  </port>
  </service>
  </definitions>

Below is my SOAP request, sent from SOAP UI:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:emp="http://ws.xx.com/xservices/EmployeeServices">
   <soapenv:Header/>
   <soapenv:Body>
      <emp:authorize>
         <!--Optional:-->
         <emp:ServiceContext>
            <!--Optional:-->
            <employeeId>8511</employeeId>
            <!--Optional:-->
            <localeId>en_US</localeId>
            <!--Optional:-->
            <organizationId>1</organizationId>
            <!--Optional:-->
            <retailLocationId>900</retailLocationId>
            <!--Optional:-->
            <workstationId>1</workstationId>
         </emp:ServiceContext>
         <!--Zero or more repetitions:-->
         <LoginInput>8511</LoginInput>
         <!--Optional:-->
         <Password>1</Password>
         <!--Optional:-->
         <LoginInputType>KEYBOARD</LoginInputType>
         <!--Optional:-->
         <Privilege>SELL_ITEM</Privilege>
      </emp:authorize>
   </soapenv:Body>
</soapenv:Envelope>

Here is my SOAP response, got from SOAP UI:

<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
   <S:Body>
      <ns2:authorizeResponse xmlns:ns2="http://ws.xx.com/xservices/EmployeeServices">
         <UserAuthorizeResponse>
            <userAuthorized>true</userAuthorized>
         </UserAuthorizeResponse>
      </ns2:authorizeResponse>
   </S:Body>
</S:Envelope>

This line is throwing below exception:

androidHttpTransport.call(SOAP_ACTION, envelope);

Updated Error:

expected: END_TAG {http://schemas.xmlsoap.org/soap/envelope/}Body (position:END_TAG </{http://schemas.xmlsoap.org/soap/envelope/}S:Fault>@1:314 in java.io.InputStreamReader@40ec86e0) 

org.xmlpull.v1.XmlPullParserException: expected: END_TAG {http://schemas.xmlsoap.org/soap/envelope/}Body (position:END_TAG </{http://schemas.xmlsoap.org/soap/envelope/}S:Fault>@1:313 in java.io.InputStreamReader@3e89c3) 
    at org.kxml2.io.KXmlParser.exception(Unknown Source)
    at org.kxml2.io.KXmlParser.require(Unknown Source)
    at org.ksoap2.SoapEnvelope.parse(Unknown Source)
    at org.ksoap2.transport.Transport.parseResponse(Unknown Source)
    at org.ksoap2.transport.HttpTransportSE.call(Unknown Source)
    at SOAPClass.main(SOAPClass.java:55)

Can anyone clarify what I'm doing wrong?


原文:https://stackoverflow.com/questions/20966426
更新时间:2023-11-22 17:11

最满意答案

要直接回答你的问题,

  1. 您必须意识到新的<!DOCTYPE HTML> doctype仅用于在浏览器中触发标准兼容模式。 传统上,从浏览器的角度来看,这个(称为doctype切换)是doctype用于唯一的东西。 因此,简而言之,如果您使用的是已触发标准模式的doctype,则IE6不会发生任何变化。

  2. 您可以使用Modernizr之类的脚本进行特征检测。 这将允许您仅在需要时使用Flash作为后备,并向支持它们的浏览器提供正确类型的电影。 即使您不使用该脚本,您仍然可以查看其来源以了解如何完成此操作。

    或者, <video><audio>标签专门允许将后备内容嵌入其中。 这意味着您只需使用<video>标记包装Flash内容,如果浏览器不支持它们,则只需使用后备内容即可。


To answer your question directly,

  1. You have to realize that the new <!DOCTYPE HTML> doctype is only used to trigger standard compliant mode in browsers. Traditionally, this (known as doctype switching) is the only thing the doctype is used for from the browser's perspective. So in short, nothing will happen change with respect to IE6 if you are using a doctype that already trigger standard mode.

  2. You can use a script like Modernizr to do feature detection. This will allow you to use Flash as a fallback only in cases when its needed, as well as serve up the correct type of movie to browsers that support them. Even if you do not use the script, you can still look at its source to learn how this is done.

    Alternatively, the <video> and <audio> tag specifically allow for fallback content to be embedded within them. This will means that you can simply wrap your Flash content with <video> tags, and if the browser does not support them it will simply use the fallback content.

相关问答

更多

相关文章

更多

最新问答

更多
  • h2元素推动其他h2和div。(h2 element pushing other h2 and div down. two divs, two headers, and they're wrapped within a parent div)
  • 创建一个功能(Create a function)
  • 我投了份简历,是电脑编程方面的学徒,面试时说要培训三个月,前面
  • PDO语句不显示获取的结果(PDOstatement not displaying fetched results)
  • Qt冻结循环的原因?(Qt freezing cause of the loop?)
  • TableView重复youtube-api结果(TableView Repeating youtube-api result)
  • 如何使用自由职业者帐户登录我的php网站?(How can I login into my php website using freelancer account? [closed])
  • SQL Server 2014版本支持的最大数据库数(Maximum number of databases supported by SQL Server 2014 editions)
  • 我如何获得DynamicJasper 3.1.2(或更高版本)的Maven仓库?(How do I get the maven repository for DynamicJasper 3.1.2 (or higher)?)
  • 以编程方式创建UITableView(Creating a UITableView Programmatically)
  • 如何打破按钮上的生命周期循环(How to break do-while loop on button)
  • C#使用EF访问MVC上的部分类的自定义属性(C# access custom attributes of a partial class on MVC with EF)
  • 如何获得facebook app的publish_stream权限?(How to get publish_stream permissions for facebook app?)
  • 如何防止调用冗余函数的postgres视图(how to prevent postgres views calling redundant functions)
  • Sql Server在欧洲获取当前日期时间(Sql Server get current date time in Europe)
  • 设置kotlin扩展名(Setting a kotlin extension)
  • 如何并排放置两个元件?(How to position two elements side by side?)
  • 如何在vim中启用python3?(How to enable python3 in vim?)
  • 在MySQL和/或多列中使用多个表用于Rails应用程序(Using multiple tables in MySQL and/or multiple columns for a Rails application)
  • 如何隐藏谷歌地图上的登录按钮?(How to hide the Sign in button from Google maps?)
  • Mysql左连接旋转90°表(Mysql Left join rotate 90° table)
  • dedecms如何安装?
  • 在哪儿学计算机最好?
  • 学php哪个的书 最好,本人菜鸟
  • 触摸时不要突出显示表格视图行(Do not highlight table view row when touched)
  • 如何覆盖错误堆栈getter(How to override Error stack getter)
  • 带有ImageMagick和许多图像的GIF动画(GIF animation with ImageMagick and many images)
  • USSD INTERFACE - > java web应用程序通信(USSD INTERFACE -> java web app communication)
  • 电脑高中毕业学习去哪里培训
  • 正则表达式验证SMTP响应(Regex to validate SMTP Responses)