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

Java ClassPathSupport类代码示例

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

本文整理汇总了Java中org.netbeans.spi.java.classpath.support.ClassPathSupport的典型用法代码示例。如果您正苦于以下问题:Java ClassPathSupport类的具体用法?Java ClassPathSupport怎么用?Java ClassPathSupport使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



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

示例1: findClassPath

import org.netbeans.spi.java.classpath.support.ClassPathSupport; //导入依赖的package包/类
public ClassPath findClassPath(FileObject file, String type) {
    if(ClassPath.SOURCE.equals(type)){
        return this.classPath;
    }
    if (ClassPath.COMPILE.equals(type)){
        try {
            URL eclipselinkJarUrl = Class.forName("javax.persistence.EntityManager").getProtectionDomain().getCodeSource().getLocation();
            URL[] urls = new URL[]{FileUtil.getArchiveRoot(eclipselinkJarUrl)};
            return ClassPathSupport.createClassPath(urls);
        } catch (Exception ex) {
            throw new RuntimeException(ex);
        }
    } 
    if (ClassPath.BOOT.equals(type)){
        return JavaPlatformManager.getDefault().getDefaultPlatform().getBootstrapLibraries();
    }
    return null;
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:19,代码来源:ClassPathProviderImpl.java


示例2: getSourceLevel

import org.netbeans.spi.java.classpath.support.ClassPathSupport; //导入依赖的package包/类
public String getSourceLevel(org.openide.filesystems.FileObject javaFile) {        
    Library ll = this.isLastUsed (javaFile);
    if (ll != null) {
        return getSourceLevel (ll);
    }
    for (LibraryManager mgr : LibraryManager.getOpenManagers()) {
        for (Library lib : mgr.getLibraries()) {
            if (!lib.getType().equals(J2SELibraryTypeProvider.LIBRARY_TYPE)) {
                continue;
            }
            List<URL> sourceRoots = lib.getContent(J2SELibraryTypeProvider.VOLUME_TYPE_SRC);
            if (sourceRoots.isEmpty()) {
                continue;
            }
            ClassPath cp = ClassPathSupport.createClassPath(sourceRoots.toArray(new URL[sourceRoots.size()]));
            FileObject root = cp.findOwnerRoot(javaFile);
            if (root != null) {
                setLastUsedRoot(root, lib);
                return getSourceLevel(lib);
            }
        }
    }
    return null;
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:25,代码来源:J2SELibrarySourceLevelQueryImpl.java


示例3: getStandardLibraries

import org.netbeans.spi.java.classpath.support.ClassPathSupport; //导入依赖的package包/类
/**
 * This implementation simply reads and parses `java.class.path' property and creates a ClassPath
 * out of it.
 * @return  ClassPath that represents contents of system property java.class.path.
 */
@Override
public ClassPath getStandardLibraries() {
    synchronized (this) {
        ClassPath cp = (standardLibs == null ? null : standardLibs.get());
        if (cp != null)
            return cp;
        final String pathSpec = getSystemProperties().get(SYSPROP_JAVA_CLASS_PATH);
        if (pathSpec == null) {
            cp = ClassPathSupport.createClassPath(new URL[0]);
        }
        else {
            cp = Util.createClassPath (pathSpec);
        }
        standardLibs = new SoftReference<>(cp);
        return cp;
    }
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:23,代码来源:J2SEPlatformImpl.java


示例4: classToSourceURL

import org.netbeans.spi.java.classpath.support.ClassPathSupport; //导入依赖的package包/类
private String classToSourceURL (FileObject fo) {
    try {
        ClassPath cp = ClassPath.getClassPath (fo, ClassPath.EXECUTE);
        FileObject root = cp.findOwnerRoot (fo);
        String resourceName = cp.getResourceName (fo, '/', false);
        if (resourceName == null) {
            getProject().log("Can not find classpath resource for "+fo+", skipping...", Project.MSG_ERR);
            return null;
        }
        int i = resourceName.indexOf ('$');
        if (i > 0)
            resourceName = resourceName.substring (0, i);
        FileObject[] sRoots = SourceForBinaryQuery.findSourceRoots 
            (root.getURL ()).getRoots ();
        ClassPath sourcePath = ClassPathSupport.createClassPath (sRoots);
        FileObject rfo = sourcePath.findResource (resourceName + ".java");
        if (rfo == null) return null;
        return rfo.getURL ().toExternalForm ();
    } catch (FileStateInvalidException ex) {
        ex.printStackTrace ();
        return null;
    }
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:24,代码来源:JPDAReload.java


示例5: createResources

import org.netbeans.spi.java.classpath.support.ClassPathSupport; //导入依赖的package包/类
@Override
protected List<PathResourceImplementation> createResources() {
    ArrayList<PathResourceImplementation> result = new ArrayList<> ();
            boolean[] includeJDK = { true };
            boolean[] includeFX = { false };
            result.addAll(ecpImpl.getResources(includeJDK, includeFX));
            lastHintValue = project.getAuxProps().get(Constants.HINT_JDK_PLATFORM, true);
            if (includeJDK[0]) {
                JavaPlatform pat = findActivePlatform();
                boolean hasFx = false;
                for (ClassPath.Entry entry : pat.getBootstrapLibraries().entries()) {
                    if (entry.getURL().getPath().endsWith("/jfxrt.jar!/")) {
                        hasFx = true;
                    }
                    result.add(ClassPathSupport.createResource(entry.getURL()));
                }
                if (includeFX[0] && !hasFx) {
                    PathResourceImplementation fxcp = createFxCPImpl(pat);
                    if (fxcp != null) {
                        result.add(fxcp);
                    }
                }
                result.addAll(nbPlatformJavaFxCp(project, pat));
            }
    return result;
        }
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:27,代码来源:BootClassPathImpl.java


示例6: findOwnerRoot

import org.netbeans.spi.java.classpath.support.ClassPathSupport; //导入依赖的package包/类
@CheckForNull
private static FileObject findOwnerRoot(
    @NonNull final String className,
    @NonNull final String[] extensions,
    @NonNull final ClassPath... binCps) {
    final String binaryResource = FileObjects.convertPackage2Folder(className);
    final ClassPath merged = ClassPathSupport.createProxyClassPath(binCps);
    for (String ext : extensions) {
        final FileObject res = merged.findResource(String.format(
                "%s.%s",    //NOI18N
                binaryResource,
                ext));
        if (res != null) {
            return merged.findOwnerRoot(res);
        }
    }
    return null;
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:19,代码来源:ProjectRunnerImpl.java


示例7: createBootClassPath

import org.netbeans.spi.java.classpath.support.ClassPathSupport; //导入依赖的package包/类
/**
     * Creates boot {@link ClassPath} for platform the test is running on,
     * it uses the sun.boot.class.path property to find out the boot path roots.
     * @return ClassPath
     * @throws java.io.IOException when boot path property contains non valid path
     */
    public static ClassPath createBootClassPath() throws IOException {
        String bootPath = System.getProperty("sun.boot.class.path");
        String[] paths = bootPath.split(File.pathSeparator);
        List<URL> roots = new ArrayList<>(paths.length);
        for (String path : paths) {
            File f = new File(path);
            if (!f.exists()) {
                continue;
            }
            URL url = Utilities.toURI(f).toURL();
            if (FileUtil.isArchiveFile(url)) {
                url = FileUtil.getArchiveRoot(url);
            }
            roots.add(url);
//            System.out.println(url);
        }
//        System.out.println("-----------");
        return ClassPathSupport.createClassPath(roots.toArray(new URL[roots.size()]));
    }
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:26,代码来源:ProjectTestBase.java


示例8: findUnitTestInTestRoot

import org.netbeans.spi.java.classpath.support.ClassPathSupport; //导入依赖的package包/类
/**
 * Copied from JUnit module implementation in 4.1 and modified
 */
private static FileObject findUnitTestInTestRoot(ClassPath cp, FileObject selectedFO, URL testRoot) {
    ClassPath testClassPath = null;

    if (testRoot == null) { //no tests, use sources instead
        testClassPath = cp;
    } else {
        try {
            List<PathResourceImplementation> cpItems = new ArrayList<PathResourceImplementation>();
            cpItems.add(ClassPathSupport.createResource(testRoot));
            testClassPath = ClassPathSupport.createClassPath(cpItems);
        } catch (IllegalArgumentException ex) {
            ErrorManager.getDefault().notify(ErrorManager.INFORMATIONAL, ex);
            testClassPath = cp;
        }
    }

    String testName = getTestName(cp, selectedFO);

    return testClassPath.findResource(testName + ".java"); // NOI18N
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:24,代码来源:ProjectUtilities.java


示例9: findClassPath

import org.netbeans.spi.java.classpath.support.ClassPathSupport; //导入依赖的package包/类
public ClassPath findClassPath(FileObject file, String type) {
    if(ClassPath.SOURCE.equals(type)){
        return this.classPath;
    }
    if (ClassPath.COMPILE.equals(type)){
        try {
            URL eclipselinkJarUrl = Class.forName("javax.persistence.EntityManager").getProtectionDomain().getCodeSource().getLocation();
            return ClassPathSupport.createClassPath(new URL[]{FileUtil.getArchiveRoot(eclipselinkJarUrl)});
        } catch (Exception ex) {
            throw new RuntimeException(ex);
        }
    }
    if (ClassPath.BOOT.equals(type)){
        return JavaPlatformManager.getDefault().getDefaultPlatform().getBootstrapLibraries();
    }
    return null;
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:18,代码来源:ClassPathProviderImpl.java


示例10: projecRuntimeClassPath

import org.netbeans.spi.java.classpath.support.ClassPathSupport; //导入依赖的package包/类
public static ClassPath projecRuntimeClassPath(Project project) {
    if (project == null) {
        return null;
    }
    boolean modular = isModularProject(project);
    List<ClassPath> delegates = new ArrayList<>();
    for (SourceGroup sg : org.netbeans.api.project.ProjectUtils.getSources(project).getSourceGroups(JavaProjectConstants.SOURCES_TYPE_JAVA)) {
        if (!isNormalRoot(sg)) {
            continue;
        }
        ClassPath del; 
        if (modular) {
            del = ClassPath.getClassPath(sg.getRootFolder(), JavaClassPathConstants.MODULE_EXECUTE_CLASS_PATH);
        } else {
            del = ClassPath.getClassPath(sg.getRootFolder(), ClassPath.EXECUTE); 
        }
        if (del != null && !del.entries().isEmpty()) {
            delegates.add(del);
        }
    }
    return ClassPathSupport.createProxyClassPath(delegates.toArray(new ClassPath[delegates.size()]));
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:23,代码来源:ShellProjectUtils.java


示例11: findClassPath

import org.netbeans.spi.java.classpath.support.ClassPathSupport; //导入依赖的package包/类
public ClassPath findClassPath(FileObject file, String type) {
    try {
    if (ClassPath.BOOT == type) {
        // XXX simpler to use JavaPlatformManager.getDefault().getDefaultPlatform().getBootstrapLibraries()
        return ClassPathSupport.createClassPath(getBootClassPath().toArray(new URL[0]));
    }

    if (ClassPath.SOURCE == type) {
        return sourcePath;
    }

    if (ClassPath.COMPILE == type) {
        return compileClassPath;
    }

    if (ClassPath.EXECUTE == type) {
        return ClassPathSupport.createClassPath(new FileObject[] {
            buildRoot
        });
    }
    } catch (Exception e) {
        e.printStackTrace();
    }
    return null;
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:26,代码来源:HintTest.java


示例12: getJavacApiJarClasspath

import org.netbeans.spi.java.classpath.support.ClassPathSupport; //导入依赖的package包/类
private static ClassPath getJavacApiJarClasspath() {
    Reference<ClassPath> r = javacApiClasspath;
    ClassPath res = r.get();
    if (res != null) {
        return res;
    }
    if (r == NONE) {
        return null;
    }
    CodeSource codeSource = Modifier.class.getProtectionDomain().getCodeSource();
    URL javacApiJar = codeSource != null ? codeSource.getLocation() : null;
    if (javacApiJar != null) {
        Logger.getLogger(DeclarativeHintsParser.class.getName()).log(Level.FINE, "javacApiJar={0}", javacApiJar);
        File aj = FileUtil.archiveOrDirForURL(javacApiJar);
        if (aj != null) {
            res = ClassPathSupport.createClassPath(FileUtil.urlForArchiveOrDir(aj));
            javacApiClasspath = new WeakReference<>(res);
            return res;
        }
    }
    javacApiClasspath = NONE;
    return null;
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:24,代码来源:DeclarativeHintsParser.java


示例13: testNBResLocURL

import org.netbeans.spi.java.classpath.support.ClassPathSupport; //导入依赖的package包/类
public void testNBResLocURL() throws Exception {
    Map<String, String> files = new HashMap<String, String>();
    files.put("org/test/x.txt", "stuff");
    files.put("org/test/resources/y.txt", "more stuff");
    Layer orig = new Layer("<file name='x' url='nbres:/org/test/x.txt'/><file name='y' url='nbresloc:/org/test/resources/y.txt'/>", files);
    FileObject orgTest = FileUtil.createFolder(new File(orig.folder, "org/test"));
    FileObject lf = orig.f.copy(orgTest, "layer", "xml");
    SavableTreeEditorCookie cookie = LayerUtils.cookieForFile(lf);
    FileSystem fs = new WritableXMLFileSystem(lf.toURL(), cookie,
            ClassPathSupport.createClassPath(new FileObject[] { FileUtil.toFileObject(orig.folder) } ));
    FileObject x = fs.findResource("x");
    assertNotNull(x);
    assertTrue(x.isData());
    assertEquals(5L, x.getSize());
    assertEquals("stuff", x.asText("UTF-8"));

    FileObject y = fs.findResource("y");
    assertNotNull(y);
    assertTrue(y.isData());
    assertEquals(10L, y.getSize());
    assertEquals("more stuff", y.asText("UTF-8"));
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:23,代码来源:WritableXMLFileSystemTest.java


示例14: testBinaryIndexers

import org.netbeans.spi.java.classpath.support.ClassPathSupport; //导入依赖的package包/类
@RandomlyFails
    public void testBinaryIndexers() throws Exception {
        final TestHandler handler = new TestHandler();
        final Logger logger = Logger.getLogger(RepositoryUpdater.class.getName()+".tests");
        logger.setLevel (Level.FINEST);
        logger.addHandler(handler);

        binIndexerFactory.indexer.setExpectedRoots(bootRoot2.toURL(), bootRoot3.toURL());
//        jarIndexerFactory.indexer.setExpectedRoots(bootRoot3.getURL());
        ClassPath cp = ClassPathSupport.createClassPath(new FileObject[] {bootRoot2, bootRoot3});
        globalPathRegistry_register(PLATFORM,new ClassPath[] {cp});
        assertTrue(handler.await());
        assertEquals(2, handler.getBinaries().size());
//        assertEquals(1, jarIndexerFactory.indexer.getCount());
        assertEquals(2, binIndexerFactory.indexer.getCount());
    }
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:17,代码来源:RepositoryUpdaterTest.java


示例15: testDeadLock

import org.netbeans.spi.java.classpath.support.ClassPathSupport; //导入依赖的package包/类
public void testDeadLock() throws Exception{
    List<PathResourceImplementation> resources = Collections.<PathResourceImplementation>emptyList();
    final ReentrantLock lock = new ReentrantLock (false);
    final CountDownLatch signal = new CountDownLatch (1);
    final ClassPath cp = ClassPathFactory.createClassPath(ClassPathSupport.createProxyClassPathImplementation(new ClassPathImplementation[] {new LockClassPathImplementation (resources,lock, signal)}));
    lock.lock();
    final ExecutorService es = Executors.newSingleThreadExecutor();        
    try {
        es.submit(new Runnable () {
            public void run () {
                cp.entries();
            }
        });
        signal.await();
        cp.entries();
    } finally {
        es.shutdownNow();
    }
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:20,代码来源:ProxyClassPathImplementationTest.java


示例16: waitScanFinished

import org.netbeans.spi.java.classpath.support.ClassPathSupport; //导入依赖的package包/类
/**
 * Waits for the end of the initial scan, this helper method 
 * is designed for tests which require to wait for end of initial scan.
 * @throws InterruptedException is thrown when the waiting thread is interrupted.
 * @deprecated use {@link JavaSource#runWhenScanFinished}
 */
public static void waitScanFinished () throws InterruptedException {
    try {
        class T extends UserTask implements ClasspathInfoProvider {
            private final ClassPath EMPTY_PATH = ClassPathSupport.createClassPath(new URL[0]);
            private final ClasspathInfo cpinfo = ClasspathInfo.create(EMPTY_PATH, EMPTY_PATH, EMPTY_PATH);
            @Override
            public void run(ResultIterator resultIterator) throws Exception {
                // no-op
            }

            @Override
            public ClasspathInfo getClasspathInfo() {
                return cpinfo;
            }
        }
        Future<Void> f = ParserManager.parseWhenScanFinished(JavacParser.MIME_TYPE, new T());
        if (!f.isDone()) {
            f.get();
        }
    } catch (Exception ex) {
    }
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:29,代码来源:SourceUtils.java


示例17: findUnitTestInTestRoot

import org.netbeans.spi.java.classpath.support.ClassPathSupport; //导入依赖的package包/类
private static FileObject findUnitTestInTestRoot(ClassPath cp, FileObject selectedFO, URL testRoot) {
    ClassPath testClassPath = null;
    if (testRoot == null) { //no tests, use sources instead
        testClassPath = cp;
    } else {
        try {
            List<PathResourceImplementation> cpItems
                    = new ArrayList<PathResourceImplementation>();
            cpItems.add(ClassPathSupport.createResource(testRoot));
            testClassPath = ClassPathSupport.createClassPath(cpItems);
        } catch (IllegalArgumentException ex) {
            ErrorManager.getDefault().notify(ErrorManager.INFORMATIONAL, ex);
            testClassPath = cp; 
        }
    }
    String testName = getTestName(cp, selectedFO);
    return testClassPath.findResource(testName+".java");
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:19,代码来源:OpenTestAction.java


示例18: projectOpened

import org.netbeans.spi.java.classpath.support.ClassPathSupport; //导入依赖的package包/类
protected void projectOpened() {
    ClassPath cp = ClassPathSupport.createClassPath(prj);
    GlobalPathRegistry.getDefault().register(ClassPath.SOURCE, new ClassPath[] { cp });

    if (toWaitOn != null) {
        try {
            toWaitOn.await();
        } catch (InterruptedException ex) {
            throw new IllegalStateException(ex);
        }
    }
    opened++;
    toOpen.countDown();
    result &= IndexingManager.getDefault().isIndexing();
    assertTrue(result);
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:17,代码来源:ScanInProgressTest.java


示例19: testIndexManagerRefreshIndexListensOnChanges_And_Issue196985

import org.netbeans.spi.java.classpath.support.ClassPathSupport; //导入依赖的package包/类
/**
 * Test that unknown source roots are registered in the scannedRoots2Dependencies with EMPTY_DEPS
 * and when the unknown root registers it's changed to regular dependencies.
 * When the root is unregistered it's removed from scannedRoots2Dependencies
 *
 * The test was also extended to test Issue 196985. Unknown root which becomes known was lost
 * @throws Exception
 */
public void testIndexManagerRefreshIndexListensOnChanges_And_Issue196985() throws Exception {
    final File _wd = this.getWorkDir();
    final FileObject wd = FileUtil.toFileObject(_wd);
    final FileObject refreshedRoot = wd.createFolder("refreshedRoot");
    final RepositoryUpdater ru = RepositoryUpdater.getDefault();
    assertNotNull(refreshedRoot);
    assertFalse (ru.getScannedRoots2Dependencies().containsKey(refreshedRoot.toURL()));
    IndexingManager.getDefault().refreshIndexAndWait(refreshedRoot.toURL(), Collections.<URL>emptyList());
    assertSame(RepositoryUpdater.UNKNOWN_ROOT, ru.getScannedRoots2Dependencies().get(refreshedRoot.toURL()));
    //Register the root => EMPTY_DEPS changes to regular deps
    final TestHandler handler = new TestHandler();
    final Logger logger = Logger.getLogger(RepositoryUpdater.class.getName()+".tests");
    logger.setLevel (Level.FINEST);
    logger.addHandler(handler);
    final ClassPath cp = ClassPathSupport.createClassPath(refreshedRoot);
    handler.reset(RepositoryUpdaterTest.TestHandler.Type.ROOTS_WORK_FINISHED);
    globalPathRegistry_register(SOURCES, new ClassPath[]{cp});
    handler.await();
    assertNotNull(ru.getScannedRoots2Dependencies().get(refreshedRoot.toURL()));
    assertNotSame(RepositoryUpdater.UNKNOWN_ROOT, ru.getScannedRoots2Dependencies().get(refreshedRoot.toURL()));
    handler.reset(RepositoryUpdaterTest.TestHandler.Type.ROOTS_WORK_FINISHED);
    globalPathRegistry_unregister(SOURCES, new ClassPath[]{cp});
    handler.await();
    assertFalse(ru.getScannedRoots2Dependencies().containsKey(refreshedRoot.toURL()));
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:34,代码来源:RepositoryUpdaterTest.java


示例20: testGetFileForInputWithCachingArchive

import org.netbeans.spi.java.classpath.support.ClassPathSupport; //导入依赖的package包/类
public void testGetFileForInputWithCachingArchive() throws  Exception {
    final File wd = getWorkDir();
    final File archiveFile = new File (wd, "src.zip");
    final ZipOutputStream out = new ZipOutputStream(new FileOutputStream(archiveFile));
    try {
        out.putNextEntry(new ZipEntry("org/me/resources/test.txt"));
        out.write("test".getBytes());
    } finally {
        out.close();
    }
    final URL archiveRoot = FileUtil.getArchiveRoot(Utilities.toURI(archiveFile).toURL());
    final URI expectedURI = new URL (archiveRoot.toExternalForm()+"org/me/resources/test.txt").toURI();
    doTestGetFileForInput(ClassPathSupport.createClassPath(archiveRoot),
    Arrays.asList(
        Pair.<Pair<String,String>,URI>of(Pair.<String,String>of("","org/me/resources/test.txt"), expectedURI),
        Pair.<Pair<String,String>,URI>of(Pair.<String,String>of("org.me","resources/test.txt"), expectedURI),
        Pair.<Pair<String,String>,URI>of(Pair.<String,String>of("org.me","resources/doesnotexist.txt"), null)
    ));

}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:21,代码来源:CachingFileManagerTest.java



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
Java WsdlMessageType类代码示例发布时间:2022-05-23
下一篇:
Java JavacNode类代码示例发布时间: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