我尝试通过代理脚本连接到网址。 所以我使用以下代码:
try {
URL myURL = new URL("https://aaa.com");
System.setProperty("java.security.policy", "policy.all");
System.setProperty("java.net.useSystemProxies", "true");
BrowserProxyInfo b = new BrowserProxyInfo();
b.setType(ProxyType.AUTO);
b.setAutoConfigURL("http://bbb.com/wpad.dat");
SunAutoProxyHandler handler = new SunAutoProxyHandler();
try {
handler.init(b);
ProxyInfo[] ps = handler.getProxyInfo(myURL);
for (ProxyInfo p : ps) {
System.out.println(p.toString());
}
} catch (ProxyConfigException e) {
log.error("error=> ProxyConfigException ", e);
} catch (ProxyUnavailableException e) {
log.error("error=> ProxyUnavailableException ", e);
}
URLConnection c = myURL.openConnection();
c.connect();
} catch (MalformedURLException e) {
log.error("error=> MalformedURLException ", e);
} catch (IOException e) {
log.error("error=> IOException ", e);
}
我可以运行代码。 但是当我尝试使用Maven构建它时,我收到了一个错误:
包com.sun.deploy.net.proxy不存在
[ERROR] /.../App.java:[135,17] 找不到符号
[ERROR]符号:类BrowserProxyInfo
我还没有找到关于com.sun.deploy.net.proxy
的任何maven依赖关系来添加到pom中。
以下是我的java信息:
java版本" 1.8.0_131"
Java(TM)SE运行时环境(版本1.8.0_131-b11)
Java HotSpot(TM)64位服务器VM(版本25.131-b11,混合模式)
这是我的maven构建:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<mainClass>com.zzz</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<finalName>${project.artifactId}-${project.version}-full</finalName>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
</plugin>
</plugins>
我还没有找到通过代理脚本连接到网址的任何其他方法。 你对这个问题有什么看法吗?或者另一种连接方式?
答案 0 :(得分:2)
你在classpath中缺少deploy.jar,你需要下载并设置maven依赖。
首先下载deploy.jar:https://github.com/barchart/barchart-oracle-study/blob/master/oracle-jdk-7.21-deploy/deploy.jar
在maven依赖项(pom.xml)中添加下载的jar:
<dependency>
<groupId>com.user.deploy</groupId>
<artifactId>deploy-jar</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath><jar path></systemPath>
</dependency>
您甚至可以在maven本地存储库中安装此jar:
阅读:Maven: best way of linking custom external JAR to my project?