序号 |
方法 |
描述 |
1 |
void addRequestProperty(String key, String value) |
添加由键值对指定的通用请求属性。 |
2 |
boolean getAllowUserInteraction() |
返回此对象的allowUserInteraction 字段的值。 |
3 |
int getConnectTimeout() |
返回连接超时的设置。 |
4 |
Object getContent() |
检索这个URL连接的内容。 |
5 |
Object getContent(Class[] classes) |
检索这个URL连接的内容。 |
6 |
String getContentEncoding() |
返回content-encoding头字段的值。 |
7 |
int getContentLength() |
返回content-length头字段的值。 |
8 |
long getContentLengthLong() |
以long类型返回content-length头字段的值。 |
9 |
String getContentType() |
返回content-type头字段的值。 |
10 |
long getDate() |
返回date头字段的值。 |
11 |
static boolean getDefaultAllowUserInteraction() |
返回allowUserInteraction 字段的默认值。 |
12 |
boolean getDefaultUseCaches() |
返回URLConnection 的useCaches 标志的默认值。 |
13 |
static boolean getDefaultUseCaches(String protocol) |
返回给定协议的useCaches 标志的默认值。 |
14 |
boolean getDoInput() |
返回此URLConnection 的doInput 标志的值。 |
15 |
boolean getDoOutput() |
返回此URLConnection 的doOutput 标志的值。 |
16 |
long getExpiration() |
返回expires头字段的值。 |
17 |
static FileNameMap getFileNameMap() |
从数据文件加载文件名映射(mimetable)。 |
18 |
String getHeaderField(int n) |
返回第n个头字段的值。 |
19 |
String getHeaderField(String name) |
返回名为name的头字段的值。 |
20 |
long getHeaderFieldDate(String name, long Default) |
返回名为name的字段作为日期解析后的值。 |
21 |
int getHeaderFieldInt(String name, int Default) |
返回名为name的字段作为数字解析后的值。 |
22 |
String getHeaderFieldKey(int n) |
返回第n个头字段的键。 |
23 |
long getHeaderFieldLong(String name, long Default) |
返回名为name的字段作为数字解析后的值。 |
24 |
Map<String,List<String>> getHeaderFields() |
返回头字段的不可修改的Map。 |
25 |
long getIfModifiedSince() |
返回此对象的ifModifiedSince 字段的值。 |
26 |
InputStream getInputStream() |
返回从这个打开的连接读取的输入流。 |
27 |
int getLastModified() |
返回last-modified头字段的值。 |
28 |
OutputStream getOutputStream() |
返回写入这个连接的输出流。 |
29 |
Permission getPermission() |
返回代表此对象所表示的连接所需的权限的对象。 |
30 |
int getReadTimeout() |
返回读取超时的设置。0返回意味着选项已禁用(即无限期超时)。 |
31 |
Map<String,List<String>> getRequestProperties() |
返回此连接的通用请求属性的不可修改的Map。 |
32 |
String getRequestProperty(String key) |
返回此连接的名为key的通用请求属性的值。 |
33 |
URL getURL() |
返回此URLConnection 的URL字段的值。 |
34 |
boolean getUseCaches() |
返回此URLConnection 的useCaches 字段的值。 |
35 |
static String guessContentTypeFromName(String fname) |
尝试根据指定的URL的“文件”部分确定对象的内容类型。 |
36 |
static String guessContentTypeFromStream(InputStream is) |
尝试根据输入流开头的字符确定输入流的类型。 |
37 |
void setAllowUserInteraction(boolean allowuserinteraction) |
设置此URLConnection 的allowUserInteraction 字段的值。 |
38 |
void setConnectTimeout(int timeout) |
设置当打开与此URLConnection 引用的资源的通信链接时要使用的指定超时值(毫秒)。 |
39 |
static void setContentHandlerFactory(ContentHandlerFactory fac) |
设置应用程序的ContentHandlerFactory 。 |
40 |
static void setDefaultAllowUserInteraction(boolean defaultallowuserinteraction) |
设置所有未来URLConnection 对象的allowUserInteraction 字段的默认值。 |
41 |
void setDefaultUseCaches(boolean defaultusecaches) |
设置useCaches 字段的默认值。 |
42 |
static void setDefaultUseCaches(String protocol, boolean defaultVal) |
设置给定协议的useCaches 字段的默认值。 |
43 |
void setDoInput(boolean doinput) |
设置此URLConnection 的doInput 字段的值。 |
44 |
void setDoOutput(boolean dooutput) |
设置此URLConnection 的doOutput 字段的值。 |
45 |
static void setFileNameMap(FileNameMap map) |
设置文件名映射。 |
46 |
void setIfModifiedSince(long ifmodifiedsince) |
设置此URLConnection 的ifModifiedSince 字段的值。 |
47 |
void setReadTimeout(int timeout) |
设置读取超时到指定的超时值(毫秒)。 |
48 |
void setRequestProperty(String key, String value) |
设置通用请求属性。 |
49 |
void setUseCaches(boolean usecaches) |
设置此URLConnection 的useCaches 字段的值。 |
50 |
String toString() |
返回此URL连接的字符串表示形式。 |