- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有办法构造一个 FTPClient来自诸如 ftp://user:pass@foo.bar:2121/path
之类的 URL 的实例,类似于 FtpURLConnection在 JDK 中?
最佳答案
如果您的问题是解析,请使用下面的代码进行解析,然后创建一个包装类...
import java.net.; import java.io.;
public class ParseURL {
public static void main(String[] args) throws Exception {
URL aURL = new URL("http://java.sun.com:80/docs/books/tutorial"
+ "/index.html?name=networking#DOWNLOADING");
System.out.println("protocol = " + aURL.getProtocol());
System.out.println("authority = " +
aURL.getAuthority());
System.out.println("host = " + aURL.getHost());
System.out.println("port = " + aURL.getPort());
System.out.println("path = " + aURL.getPath());
System.out.println("query = " + aURL.getQuery());
System.out.println("filename = " + aURL.getFile());
System.out.println("ref = " + aURL.getRef());
} }
这是程序显示的输出:
协议(protocol)=http
权限 = java.sun.com:80
主机 = java.sun.com
端口=80
路径=/docs/books/tutorial/index.html
查询=名称=网络
文件名=/docs/books/tutorial/index.html?name=networking
引用 = 下载
关于java - 如何从 URL 创建 commons-net FTPClient,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4944057/
我是一名优秀的程序员,十分优秀!