• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java SOAPExceptionImpl类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl的典型用法代码示例。如果您正苦于以下问题:Java SOAPExceptionImpl类的具体用法?Java SOAPExceptionImpl怎么用?Java SOAPExceptionImpl使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



SOAPExceptionImpl类属于com.sun.xml.internal.messaging.saaj包,在下文中一共展示了SOAPExceptionImpl类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: appendFaultSubcode

import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl; //导入依赖的package包/类
@Override
public void appendFaultSubcode(QName subcode) throws SOAPException {
    if (subcode == null) {
        return;
    }
    if (subcode.getNamespaceURI() == null ||
        "".equals(subcode.getNamespaceURI())) {

        log.severe("SAAJ0432.ver1_2.subcode.not.ns.qualified");
        throw new SOAPExceptionImpl("A Subcode must be namespace-qualified");
    }
    if (innermostSubCodeElement == null) {
        if (faultCodeElement == null)
            findFaultCodeElement();
        innermostSubCodeElement = faultCodeElement;
    }
    String prefix = null;
    if (subcode.getPrefix() == null || "".equals(subcode.getPrefix())) {
        prefix =
            ((ElementImpl) innermostSubCodeElement).getNamespacePrefix(
                subcode.getNamespaceURI());
    } else
        prefix = subcode.getPrefix();
    if (prefix == null || "".equals(prefix)) {
        prefix = "ns1";
    }
    innermostSubCodeElement =
        innermostSubCodeElement.addChildElement(subcodeName);
    SOAPElement subcodeValueElement =
        innermostSubCodeElement.addChildElement(valueName);
    ((ElementImpl) subcodeValueElement).ensureNamespaceIsDeclared(
        prefix,
        subcode.getNamespaceURI());
    subcodeValueElement.addTextNode(prefix + ":" + subcode.getLocalPart());
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:36,代码来源:Fault1_2Impl.java


示例2: lookForEnvelope

import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl; //导入依赖的package包/类
protected void lookForEnvelope() throws SOAPException {
    Element envelopeChildElement = document.doGetDocumentElement();
    if (envelopeChildElement == null || envelopeChildElement instanceof Envelope) {
        envelope = (EnvelopeImpl) envelopeChildElement;
    } else if (!(envelopeChildElement instanceof ElementImpl)) {
        log.severe("SAAJ0512.soap.incorrect.factory.used");
        throw new SOAPExceptionImpl("Unable to create envelope: incorrect factory used during tree construction");
    } else {
        ElementImpl soapElement = (ElementImpl) envelopeChildElement;
        if (soapElement.getLocalName().equalsIgnoreCase("Envelope")) {
            String prefix = soapElement.getPrefix();
            String uri = (prefix == null) ? soapElement.getNamespaceURI() : soapElement.getNamespaceURI(prefix);
            if(!uri.equals(NameImpl.SOAP11_NAMESPACE) && !uri.equals(NameImpl.SOAP12_NAMESPACE)) {
                log.severe("SAAJ0513.soap.unknown.ns");
                throw new SOAPVersionMismatchException("Unable to create envelope from given source because the namespace was not recognized");
            }
        } else {
            log.severe("SAAJ0514.soap.root.elem.not.named.envelope");
            throw new SOAPExceptionImpl(
                "Unable to create envelope from given source because the root element is not named \"Envelope\"");
        }
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:24,代码来源:SOAPPartImpl.java


示例3: getContent

import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl; //导入依赖的package包/类
public Object getContent() throws SOAPException {
    try {
        if (mimePart != null) {
            //return an inputstream
            return mimePart.read();
        }
        if (dataHandler != null) {
            return getDataHandler().getContent();
        } else if (rawContent != null) {
            return rawContent.getContent();
        } else {
            log.severe("SAAJ0572.soap.no.content.for.attachment");
            throw new SOAPExceptionImpl("No data handler/content associated with this attachment");
        }
    } catch (Exception ex) {
        log.log(Level.SEVERE, "SAAJ0575.soap.attachment.getcontent.exception", ex);
        throw new SOAPExceptionImpl(ex.getLocalizedMessage());
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:20,代码来源:AttachmentPartImpl.java


示例4: getMimePart

import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl; //导入依赖的package包/类
MimeBodyPart getMimePart() throws SOAPException {
    try {
        if (this.mimePart != null) {
            return new MimeBodyPart(mimePart);
        }
        if (rawContent != null) {
            copyMimeHeaders(headers, rawContent);
            return rawContent;
        }

        MimeBodyPart envelope = new MimeBodyPart();

        envelope.setDataHandler(dataHandler);
        copyMimeHeaders(headers, envelope);

        return envelope;
    } catch (Exception ex) {
        log.severe("SAAJ0504.soap.cannot.externalize.attachment");
        throw new SOAPExceptionImpl("Unable to externalize attachment", ex);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:22,代码来源:AttachmentPartImpl.java


示例5: copyMimeHeaders

import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl; //导入依赖的package包/类
public static void copyMimeHeaders(MimeBodyPart mbp, AttachmentPartImpl ap)
    throws SOAPException {
    try {
        List hdr = mbp.getAllHeaders();
        int sz = hdr.size();
        for( int i=0; i<sz; i++ ) {
            Header h = (Header)hdr.get(i);
            if(h.getName().equalsIgnoreCase("Content-Type"))
                continue;   // skip
            ap.addMimeHeader(h.getName(), h.getValue());
        }
    } catch (Exception ex) {
        log.severe("SAAJ0506.soap.cannot.copy.mime.hdrs.into.attachment");
        throw new SOAPExceptionImpl(
            "Unable to copy MIME headers into attachment",
            ex);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:19,代码来源:AttachmentPartImpl.java


示例6: createName

import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl; //导入依赖的package包/类
@Override
public Name createName(String localName, String prefix, String uri)
    throws SOAPException {

    // validating parameters before passing them on
    // to make sure that the namespace specification rules are followed

    // reserved xmlns prefix cannot be used.
    if ("xmlns".equals(prefix)) {
        log.severe("SAAJ0123.impl.no.reserved.xmlns");
        throw new SOAPExceptionImpl("Cannot declare reserved xmlns prefix");
    }
    // Qualified name cannot be xmlns.
    if ((prefix == null) && ("xmlns".equals(localName))) {
        log.severe("SAAJ0124.impl.qualified.name.cannot.be.xmlns");
        throw new SOAPExceptionImpl("Qualified name cannot be xmlns");
    }

    return NameImpl.create(localName, prefix, uri);
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:21,代码来源:EnvelopeImpl.java


示例7: setRawContentBytes

import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl; //导入依赖的package包/类
public void setRawContentBytes(
    byte[] content, int off, int len, String contentType)
    throws SOAPException {
    if (mimePart != null) {
        mimePart.close();
        mimePart = null;
    }
    if (content == null) {
        throw new SOAPExceptionImpl("Null content passed to setRawContentBytes");
    }
    dataHandler = null;
    try {
        InternetHeaders hdrs = new InternetHeaders();
        hdrs.setHeader("Content-Type", contentType);
        rawContent = new MimeBodyPart(hdrs, content, off, len);
        setMimeHeader("Content-Type", contentType);
    } catch (Exception e) {
        log.log(Level.SEVERE,
            "SAAJ0576.soap.attachment.setrawcontent.exception", e);
        throw new SOAPExceptionImpl(e.getLocalizedMessage());
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:23,代码来源:AttachmentPartImpl.java


示例8: getFaultReasonLocales

import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl; //导入依赖的package包/类
@Override
public Iterator<Locale> getFaultReasonLocales() throws SOAPException {
    // Fault Reason has similar semantics as faultstring
    if (this.faultStringElement == null)
        findReasonElement();
    Iterator eachTextElement =
        this.faultStringElement.getChildElements(textName);
    List<Locale> localeSet = new ArrayList<>();
    while (eachTextElement.hasNext()) {
        SOAPElement textElement = (SOAPElement) eachTextElement.next();
        Locale thisLocale = getLocale(textElement);
        if (thisLocale == null) {
            log.severe("SAAJ0431.ver1_2.xml.lang.missing");
            throw new SOAPExceptionImpl("\"xml:lang\" attribute is not present on the Text element");
        }
        localeSet.add(thisLocale);
    }
    if (localeSet.isEmpty()) {
        log.severe("SAAJ0434.ver1_2.text.element.not.present");
        throw new SOAPExceptionImpl("env:Text elements with mandatory xml:lang attributes must be present inside env:Reason");
    }
    return localeSet.iterator();
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:24,代码来源:Fault1_2Impl.java


示例9: parseContentType

import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl; //导入依赖的package包/类
private static ContentType parseContentType(MimeHeaders headers) throws SOAPExceptionImpl {
    final String ct;
    if (headers != null)
        ct = getContentType(headers);
    else {
        log.severe("SAAJ0550.soap.null.headers");
        throw new SOAPExceptionImpl("Cannot create message: " +
                                    "Headers can't be null");
    }

    if (ct == null) {
        log.severe("SAAJ0532.soap.no.Content-Type");
        throw new SOAPExceptionImpl("Absent Content-Type");
    }
    try {
        return new ContentType(ct);
    } catch (Throwable ex) {
        log.severe("SAAJ0535.soap.cannot.internalize.message");
        throw new SOAPExceptionImpl("Unable to internalize message", ex);
    }
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:22,代码来源:MessageImpl.java


示例10: createName

import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl; //导入依赖的package包/类
public Name createName(String localName, String prefix, String uri)
    throws SOAPException {

    // validating parameters before passing them on
    // to make sure that the namespace specification rules are followed

    // reserved xmlns prefix cannot be used.
    if ("xmlns".equals(prefix)) {
        log.severe("SAAJ0123.impl.no.reserved.xmlns");
        throw new SOAPExceptionImpl("Cannot declare reserved xmlns prefix");
    }
    // Qualified name cannot be xmlns.
    if ((prefix == null) && ("xmlns".equals(localName))) {
        log.severe("SAAJ0124.impl.qualified.name.cannot.be.xmlns");
        throw new SOAPExceptionImpl("Qualified name cannot be xmlns");
    }

    return NameImpl.create(localName, prefix, uri);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:20,代码来源:EnvelopeImpl.java


示例11: addHeaderElement

import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl; //导入依赖的package包/类
public SOAPHeaderElement addHeaderElement(Name name) throws SOAPException {
    SOAPElement newHeaderElement =
        ElementFactory.createNamedElement(
            ((SOAPDocument) getOwnerDocument()).getDocument(),
            name.getLocalName(),
            name.getPrefix(),
            name.getURI());
    if (newHeaderElement == null
        || !(newHeaderElement instanceof SOAPHeaderElement)) {
        newHeaderElement = createHeaderElement(name);
    }

    // header elements must be namespace qualified
    // check that URI is  not empty, ensuring that the element is NS qualified.
    String uri = newHeaderElement.getElementQName().getNamespaceURI();
    if ((uri == null) || ("").equals(uri)) {
        log.severe("SAAJ0131.impl.header.elems.ns.qualified");
        throw new SOAPExceptionImpl("HeaderElements must be namespace qualified");
    }
    addNode(newHeaderElement);
    return (SOAPHeaderElement) newHeaderElement;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:23,代码来源:HeaderImpl.java


示例12: getFaultReasonTexts

import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl; //导入依赖的package包/类
@Override
public Iterator<String> getFaultReasonTexts() throws SOAPException {
    // Fault Reason has similar semantics as faultstring
    if (this.faultStringElement == null)
        findReasonElement();
    Iterator eachTextElement =
        this.faultStringElement.getChildElements(textName);
    List<String> texts = new ArrayList<>();
    while (eachTextElement.hasNext()) {
        SOAPElement textElement = (SOAPElement) eachTextElement.next();
        Locale thisLocale = getLocale(textElement);
        if (thisLocale == null) {
            log.severe("SAAJ0431.ver1_2.xml.lang.missing");
            throw new SOAPExceptionImpl("\"xml:lang\" attribute is not present on the Text element");
        }
        texts.add(textElement.getValue());
    }
    if (texts.isEmpty()) {
        log.severe("SAAJ0434.ver1_2.text.element.not.present");
        throw new SOAPExceptionImpl("env:Text must be present inside env:Reason");
    }
    return texts.iterator();
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:24,代码来源:Fault1_2Impl.java


示例13: addHeaderElement

import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl; //导入依赖的package包/类
@Override
public SOAPHeaderElement addHeaderElement(QName name) throws SOAPException {
    SOAPElement newHeaderElement =
        ElementFactory.createNamedElement(
            ((SOAPDocument) getOwnerDocument()).getDocument(),
            name.getLocalPart(),
            name.getPrefix(),
            name.getNamespaceURI());
    if (newHeaderElement == null
        || !(newHeaderElement instanceof SOAPHeaderElement)) {
        newHeaderElement = createHeaderElement(name);
    }

    // header elements must be namespace qualified
    // check that URI is  not empty, ensuring that the element is NS qualified.
    String uri = newHeaderElement.getElementQName().getNamespaceURI();
    if ((uri == null) || ("").equals(uri)) {
        log.severe("SAAJ0131.impl.header.elems.ns.qualified");
        throw new SOAPExceptionImpl("HeaderElements must be namespace qualified");
    }
    addNode(newHeaderElement);
    return (SOAPHeaderElement) newHeaderElement;
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:24,代码来源:HeaderImpl.java


示例14: getFaultReasonTexts

import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl; //导入依赖的package包/类
public Iterator getFaultReasonTexts() throws SOAPException {
    // Fault Reason has similar semantics as faultstring
    if (this.faultStringElement == null)
        findReasonElement();
    Iterator eachTextElement =
        this.faultStringElement.getChildElements(textName);
    List texts = new ArrayList();
    while (eachTextElement.hasNext()) {
        SOAPElement textElement = (SOAPElement) eachTextElement.next();
        Locale thisLocale = getLocale(textElement);
        if (thisLocale == null) {
            log.severe("SAAJ0431.ver1_2.xml.lang.missing");
            throw new SOAPExceptionImpl("\"xml:lang\" attribute is not present on the Text element");
        }
        texts.add(textElement.getValue());
    }
    if (texts.isEmpty()) {
        log.severe("SAAJ0434.ver1_2.text.element.not.present");
        throw new SOAPExceptionImpl("env:Text must be present inside env:Reason");
    }
    return texts.iterator();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:23,代码来源:Fault1_2Impl.java


示例15: getFaultReasonLocales

import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl; //导入依赖的package包/类
public Iterator getFaultReasonLocales() throws SOAPException {
    // Fault Reason has similar semantics as faultstring
    if (this.faultStringElement == null)
        findReasonElement();
    Iterator eachTextElement =
        this.faultStringElement.getChildElements(textName);
    List localeSet = new ArrayList();
    while (eachTextElement.hasNext()) {
        SOAPElement textElement = (SOAPElement) eachTextElement.next();
        Locale thisLocale = getLocale(textElement);
        if (thisLocale == null) {
            log.severe("SAAJ0431.ver1_2.xml.lang.missing");
            throw new SOAPExceptionImpl("\"xml:lang\" attribute is not present on the Text element");
        }
        localeSet.add(thisLocale);
    }
    if (localeSet.isEmpty()) {
        log.severe("SAAJ0434.ver1_2.text.element.not.present");
        throw new SOAPExceptionImpl("env:Text elements with mandatory xml:lang attributes must be present inside env:Reason");
    }
    return localeSet.iterator();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:23,代码来源:Fault1_2Impl.java


示例16: getFaultReasonTextElement

import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl; //导入依赖的package包/类
private SOAPElement getFaultReasonTextElement(Locale locale)
    throws SOAPException {

    // Fault Reason has similar semantics as faultstring
    Iterator eachTextElement =
        this.faultStringElement.getChildElements(textName);
    while (eachTextElement.hasNext()) {
        SOAPElement textElement = (SOAPElement) eachTextElement.next();
        Locale thisLocale = getLocale(textElement);
        if (thisLocale == null) {
            log.severe("SAAJ0431.ver1_2.xml.lang.missing");
            throw new SOAPExceptionImpl("\"xml:lang\" attribute is not present on the Text element");
        }
        if (thisLocale.equals(locale)) {
            return textElement;
        }
    }
    return null;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:20,代码来源:Fault1_2Impl.java


示例17: createMessage

import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl; //导入依赖的package包/类
public SOAPMessage createMessage(MimeHeaders headers, XMLStreamReader reader) throws SOAPException, IOException {
    String contentTypeString = MessageImpl.getContentType(headers);

    if (listener != null) {
        throw new SOAPException("Listener OutputStream is not supported with XMLStreamReader");
    }

    try {
        ContentType contentType = new ContentType(contentTypeString);
        int stat = MessageImpl.identifyContentType(contentType);

        if (MessageImpl.isSoap1_1Content(stat)) {
            return new Message1_1Impl(headers,contentType,stat,reader);
        } else if (MessageImpl.isSoap1_2Content(stat)) {
            return new Message1_2Impl(headers,contentType,stat,reader);
        } else {
            log.severe("SAAJ0530.soap.unknown.Content-Type");
            throw new SOAPExceptionImpl("Unrecognized Content-Type");
        }
    } catch (ParseException e) {
        log.severe("SAAJ0531.soap.cannot.parse.Content-Type");
        throw new SOAPExceptionImpl(
            "Unable to parse content type: " + e.getMessage());
    }
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:26,代码来源:MessageFactoryImpl.java


示例18: addChildElement

import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl; //导入依赖的package包/类
public SOAPElement addChildElement(SOAPElement element)
    throws SOAPException {
    String localName = element.getLocalName();
    if ("Detail".equalsIgnoreCase(localName)) {
        if (hasDetail()) {
            log.severe("SAAJ0436.ver1_2.detail.exists.error");
            throw new SOAPExceptionImpl("Cannot add Detail, Detail already exists");
        }
        String uri = element.getElementQName().getNamespaceURI();
        if (!uri.equals(SOAPConstants.URI_NS_SOAP_1_2_ENVELOPE)) {
            log.severe("SAAJ0437.ver1_2.version.mismatch.error");
            throw new SOAPExceptionImpl("Cannot add Detail, Incorrect SOAP version specified for Detail element");
        }
    }
    if (element instanceof Detail1_2Impl) {
        ElementImpl importedElement = (ElementImpl) importElement(element);
        addNode(importedElement);
        return convertToSoapElement(importedElement);
    } else
        return super.addChildElement(element);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:22,代码来源:Fault1_2Impl.java


示例19: lookForEnvelope

import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl; //导入依赖的package包/类
protected void lookForEnvelope() throws SOAPException {
    Element envelopeChildElement = document.doGetDocumentElement();
    org.w3c.dom.Node soapEnvelope = document.findIfPresent(envelopeChildElement);
    if (soapEnvelope == null || soapEnvelope instanceof Envelope) {
        envelope = (EnvelopeImpl) soapEnvelope;
    } else if (document.find(envelopeChildElement) == null) {
        log.severe("SAAJ0512.soap.incorrect.factory.used");
        throw new SOAPExceptionImpl("Unable to create envelope: incorrect factory used during tree construction");
    } else {
        ElementImpl soapElement = (ElementImpl) document.find(envelopeChildElement);
        if (soapElement.getLocalName().equalsIgnoreCase("Envelope")) {
            String prefix = soapElement.getPrefix();
            String uri = (prefix == null) ? soapElement.getNamespaceURI() : soapElement.getNamespaceURI(prefix);
            if(!uri.equals(NameImpl.SOAP11_NAMESPACE) && !uri.equals(NameImpl.SOAP12_NAMESPACE)) {
                log.severe("SAAJ0513.soap.unknown.ns");
                throw new SOAPVersionMismatchException("Unable to create envelope from given source because the namespace was not recognized");
            }
        } else {
            log.severe("SAAJ0514.soap.root.elem.not.named.envelope");
            throw new SOAPExceptionImpl(
                "Unable to create envelope from given source because the root element is not named \"Envelope\"");
        }
    }
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:25,代码来源:SOAPPartImpl.java


示例20: getContent

import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl; //导入依赖的package包/类
@Override
public Object getContent() throws SOAPException {
    try {
        if (mimePart != null) {
            //return an inputstream
            return mimePart.read();
        }
        if (dataHandler != null) {
            return getDataHandler().getContent();
        } else if (rawContent != null) {
            return rawContent.getContent();
        } else {
            log.severe("SAAJ0572.soap.no.content.for.attachment");
            throw new SOAPExceptionImpl("No data handler/content associated with this attachment");
        }
    } catch (Exception ex) {
        log.log(Level.SEVERE, "SAAJ0575.soap.attachment.getcontent.exception", ex);
        throw new SOAPExceptionImpl(ex.getLocalizedMessage());
    }
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:21,代码来源:AttachmentPartImpl.java



注:本文中的com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java JavaSimpleTypeCreator类代码示例发布时间:2022-05-23
下一篇:
Java Optional类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap