代码搜索:URLConnection
找到约 442 项符合「URLConnection」的源代码
代码结果 442
www.eeworm.com/read/469590/6932389
java getheaders.java
// Sample Java code - uses URL object to retreive a web page
//
// Looks for a url on the command line, prints out some headers that
// are sent back by the server when fetching the URL
// Uses URLC
www.eeworm.com/read/340615/12143367
java md5produce.java
package com.intohotel.util;
import java.net.URL;
import java.net.URLConnection;
import java.text.SimpleDateFormat;
import java.util.Date;
/**
* MD5码 生产者 ^-^ java里喜欢这么称呼
* @author weihua
www.eeworm.com/read/294062/8255955
java remotepic.java
// Decompiled by DJ v2.9.9.61 Copyright 2000 Atanas Neshkov Date: 2007-12-22 19:18:26
// Home Page : http://members.fortunecity.com/neshkov/dj.html - Check often for new version!
// Decompiler opt
www.eeworm.com/read/357226/3027387
java fileuploadthreadv2.java
package jupload;
/*
* URLConnection instance given by the URL class openConnection() function
* can't handle uploading of large files.
*
* The reason being? URLConnection only does a post to the
www.eeworm.com/read/338693/3314329
java fileuploadthreadv2.java
package wjhk.jupload;
/*
* URLConnection instance given by the URL class openConnection() function
* can't handle uploading of large files.
*
* The reason being? URLConnection only does a post to
www.eeworm.com/read/274766/4182496
java fileuploadthreadv2.java
package wjhk.jupload;
/*
* URLConnection instance given by the URL class openConnection() function
* can't handle uploading of large files.
*
* The reason being? URLConnection only does a post to
www.eeworm.com/read/124300/14577517
txt acme包中的以post方式发送数据的例子.txt
package Acme;
import java.net.*;
import java.io.*;
import java.util.*;
import java.text.*;
/// A URLConnection that implements POST.
//
// Some implementations of URLConnection, e.g. th
www.eeworm.com/read/135700/13909959
txt acme包中的以post方式发送数据的例子。.txt
package Acme;
import java.net.*;
import java.io.*;
import java.util.*;
import java.text.*;
/// A URLConnection that implements POST.
//
// Some implementations of URLConnection, e.g. th
www.eeworm.com/read/279678/4135517
java urlconnectionsample.java
//URLConnection.java
import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.util.Da
www.eeworm.com/read/245488/4503069
txt overview3.txt
UML Sequence diagram shows how to open a connection and access a URL with
the URL and URLConnection classes.