64位java下载地址可以给我么??还有为啥显示无法连接到服务器
额,JAVA我给你网址http://wwwjavacom/zh_CN/download/manualjsp
选择Windows脱机64位,还有如果你家有网络的话还无法连接就是服务器的问题了,可能那个服务器关服了,也可能你的我的世界版本和服务器不相同,也可能别的服务器安装了一个mod而你没有安装,你的我的世界什么版本,我给你一个无mod的相应版本的服务器,
strUrl为文件地址,fileName为文件在本地的保存路径,试试吧~
public static void writeFile(String strUrl, String fileName) {
URL url = null;
try {
url = new URL(strUrl);
} catch (MalformedURLException e2) {
e2printStackTrace();
}
InputStream is = null;
try {
is = urlopenStream();
} catch (IOException e1) {
e1printStackTrace();
}
OutputStream os = null;
try {
os = new FileOutputStream( fileName);
int bytesRead = 0;
byte[] buffer = new byte[8192];
while ((bytesRead = isread(buffer, 0, 8192)) != -1) {
oswrite(buffer, 0, bytesRead);
}
Systemoutprintln("下载成功:"+strUrl);
} catch (FileNotFoundException e) {
eprintStackTrace();
} catch (IOException e) {
eprintStackTrace();
}
}
向压缩包里添加文件时直接把服务器上的文件用流读进来就行,不用非把文件放到同一个目录,用程序生成压缩包和用命令行工具是不一样的,不要想当然。 写了个示例程序,你可以参考一下。这个示例不使用临时文件,把 OutputStream os替换成你下载用的输出流就可以实现一边压缩一边下载。注意javautilzip不支持非ascii文件名。想支持中文文件名可以用apache ant或其他的库。
import javaio;
import javautilzipZipEntry;
import javautilzipZipOutputStream;
public class ZipTest {
public static void main( String[] args ) {
try {
writeZip();
} catch ( IOException e ) {
eprintStackTrace();
}
}
private static void writeZip() throws IOException {
String[] files = { "/ws/dir1/file1", "/ws/dir2/file2", "/ws/file3", "/pub/successwav" };
OutputStream os = new BufferedOutputStream( new FileOutputStream( "/ws/archivezip" ) );
ZipOutputStream zos = new ZipOutputStream( os );
byte[] buf = new byte[8192];
int len;
for ( String filename : files ) {
File file = new File( filename );
if ( !fileisFile() ) continue;
ZipEntry ze = new ZipEntry( filegetName() );
zosputNextEntry( ze );
BufferedInputStream bis = new BufferedInputStream( new FileInputStream( file ) );
while ( ( len = bisread( buf ) ) > 0 ) {
zoswrite( buf, 0, len );
}
zoscloseEntry();
}
zosclose();
}
}
js 做不到 copy 到客户端指定位置
如果说的是java的话, 可以做到
import javaioFileNotFoundException;import javaioFileOutputStream;
import javaioIOException;
import javaioInputStream;
import javanetMalformedURLException;
import javanetURL;
import javanetURLConnection;
/
文 件 名: Testjava
版 权: XX Technologies Co, Ltd Copyright YYYY-YYYY, All rights reserved
描 述: <描述>
修改时间: 2015-7-10
跟踪单号: <跟踪单号>
修改单号: <修改单号>
修改内容: <修改内容>
/
/
@version [版本号, 2015-7-10]
@see [相关类/方法]
@since [产品/模块版本]
/
public class Test
{
public static void main(String[] args)
{
try
{
URLConnection openConnection = new URL("服务器文件的访问地址")openConnection();
InputStream is = openConnectiongetInputStream();
byte[] buff = new byte[1024];
int len;
FileOutputStream fos = new FileOutputStream("c:\\你的文件名扩展名");
if (null != is)
{
while ((len = isread(buff)) != -1)
{
foswrite(buff, 0, len);
}
}
fosclose();
isclose();
}
catch (MalformedURLException e)
{
eprintStackTrace();
}
catch (FileNotFoundException e)
{
eprintStackTrace();
}
catch (IOException e)
{
eprintStackTrace();
}
}
}
把要下载的文件名存在数据库中,载入页面通过servlet或者action或者采用javaBean读取数据库数据,然后遍历出来,再通过servlet或者action的outputstream下载即可
0条评论