文件流路径|文件流怎么获取网络路径

文件流路径|文件流怎么获取网络路径的第1张示图

『壹』 java文件流访问http路径下的文件 可以吗希解答

当然可以了,只需要要连接前台服务器就行了,至于访问文件,就不用说了吧。。。祝你好运

『贰』 FileOutputStream 文件输出流的相对路径怎么设

<?phpecho ' web-root = '.$_SERVER['DOCUMENT_ROOT'].'<br>';echo ' current-file = '.__FILE__.'<br>';echo ' current-dir = '.dirname(__FILE__).'<br>';echo ' http-root = '.$_SERVER['HTTP_HOST'].'<br>';echo ' web-position = '.$_SERVER['PHP_SELF'].'<br>';$file='c:/webroot/index.php';echo ' file-position = '.$file.'<br>';$fileWebAddress='http://'.str_replace($_SERVER['DOCUMENT_ROOT'],$_SERVER['HTTP_HOST'],$file);echo ' file-web-position = '.$fileWebAddress.'<br>';?>

『叁』 什么是流它与文件之间的关系如何

文件(File)和流(Stream)是既有区别又有联系的两个概念。 文件是计算机管理数据的基本单位,同时也是应用程序保存和读取数据的一个重要场所。 特性:每个文件都有文件名、文件所在路径、创建时间及访问仅限等属性。———————————————————————————————————————————————————————————————— 流是字节序列的抽象概念,例如文件、输入/输出设备、内部进程通信管道等。流提供一种向后备存储器写入字节和从后备存储器读取字节的方式。 存储介质:除了和磁盘文件直接相关的文件流以外,流还有多种类型。流可以分布在网络中、内存中或者是磁带中。

『肆』 C++中输入流文件路径说明

fin.open("c:\\Documents and Settings\\1.txt");全路径+文件名不过注意在微软WINDOWS系统中目录分隔符用\\而LINUX/UNIX目录分隔符用/

『伍』 编程:windows是通过文件流来操作文件的吧,如点击某个文件,系统是通过什么代码来获取此文件的路径的

如果直接需要从windows里点击某个文件来操作的话,需要学习windows shell开发。C++ 语言的。没有C#..比如扩展文件右键。

『陆』 什么是内存流和文件流

文件流 FileStream继承与Stream类,一个FileStream类的实例实际上代表一个文件流,使用FileStream类可以对文件系统上是文件进行读取、写入、打开和关闭操作。与ioStream、sStream共同作为头文件构成IO标准库。

内存流 MemoryStream表示的是保存在内存中的数据流,由内存流封装的数据可以在内存中直接访问。内存一般用于暂时缓存数据以降低应用程序对临时缓冲区和临时文件的需要。

引入内存流是因为内存流和字节数组虽然都位于程序缓冲区,但是具有不同特性。内存流相对于字节数组而言,具有流特有的特性,并且容量可自动增长,在数据加密以及对长度不定的数据进行缓存等场合,使用内存流比较方便。

(6)文件流路径扩展阅读:

MemoryStream有多种构造函数如下:

1、public MemoryStream();该构造函数初始分配的容量大小为0,随着数据的不断写入,其容量可以不断地自动扩展。

2、public MemoryStream(byte[] buffer);根据字节数组buffer初始化,实例的容量大小规定为字节数组的长度。

3、public MemoryStream(int capacity);容量固定为capacity。

『柒』 mac系统,java编程中文件流的路径是如何写的

看看这个,我昨天刚写的: import java.io.BufferedOutputStream;import java.io.File;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.FileReader;import java.io.IOException;import java.io.PrintWriter;import java.util.Scanner;public class AddList {private String filePath = "";private String bakPath = "";private String content = "";Scanner sc = new Scanner(System.in);public String readFile(){content = "";if (isNull(filePath)) {System.out.println("文件存储路径:");filePath = sc.nextLine();}File file = new File(filePath);FileReader fr = null;try {if (file.exists()) {fr = new FileReader(file);char[] chars = new char[1024];int n = 0;while((n = fr.read(chars)) != -1){String string = new String(chars, 0, n);content = content + string;}} else {System.out.println("文件不存在");}} catch (Exception e) {e.printStackTrace();} finally {if (fr != null) {try {fr.close();} catch (IOException e) {e.printStackTrace();}}}return content;}public void writeFile(String path){File file = new File(path);FileOutputStream fos = null;mkDirs(path);try {fos = new FileOutputStream(file);BufferedOutputStream bos = new BufferedOutputStream(fos);PrintWriter pw = new PrintWriter(bos, true);pw.print(content);pw.flush();} catch (FileNotFoundException e) {e.printStackTrace();} finally {if (fos != null) {try {fos.close();} catch (IOException e) {e.printStackTrace();}}}}public void writeFile(){if (isNull(filePath)) {System.out.println("文件存储路径:");filePath = sc.nextLine();}File file = new File(filePath);FileOutputStream fos = null;mkDirs(filePath);try {fos = new FileOutputStream(file);BufferedOutputStream bos = new BufferedOutputStream(fos);PrintWriter pw = new PrintWriter(bos, true);pw.print(content);pw.flush();} catch (FileNotFoundException e) {e.printStackTrace();} finally {if (fos != null) {try {fos.close();} catch (IOException e) {e.printStackTrace();}}}}public void mkDirs(String filepath){if (filepath.indexOf("\\") != -1) {filepath = filepath.replaceAll("\\", "/");}int n = filepath.indexOf("//");String path = filepath.substring(0, n) + "//";filepath = filepath.substring(filepath.indexOf("//") + 1, filepath.length());String[] files = filepath.split("/");for (int i = 0; i < files.length – 1; i++) {path = path + files[i];File file = new File(path);if (!file.exists()) {file.mkdir();}}}public void addImfor(){System.out.println("——–增加记录———");String name = "";String tel = "";String email = "";content = readFile();while(true){System.out.println("姓名:");name = sc.next();System.out.println("电话:");tel = sc.next();System.out.println("Email:");email = sc.next();content = content + name + "<>" + tel + "<>" + email +"<==>";System.out.println("0、Exit 1、继续");int i = sc.nextInt();if (i == 0) {break;}}writeFile();}public void deleteImfor(){System.out.println("———删除记录———");String name = "";String[] imfors = null;content = readFile();while(true){System.out.println("你要删除的姓名是:");name = sc.next();if (content.indexOf(name) != -1) {imfors = content.split("<==>");for (int i = 0; i < imfors.length; i++) {if (imfors[i].indexOf(name) != -1) {imfors[i] = "";}}content = "";for (int i = 0; i < imfors.length; i++) {if (!isNull(imfors[i])) {content = content + imfors[i] + "<==>";}}writeFile();System.out.println("删除成功");} else {System.out.println("此人不存在");}System.out.println("0、Exit 1、继续");int i = sc.nextInt();if (i == 0) {break;}}}public void viewAll(){System.out.println("———-显示所有————");content = readFile();if (!isNull(content)) {String[] imfors = content.split("<==>");System.out.println("姓名\t电话\tEmail");for (int i = 0; i < imfors.length; i++) {String[] imfor = imfors[i].split("<>");for (int j = 0; j < imfor.length; j++) {System.out.print(imfor[j] + "\t");}System.out.println();}} else {System.out.println("暂时还没有记录");}}public void queryImfor(){System.out.println("———-查找记录———–");content = readFile();if (!isNull(content)) {String result = "";String[] imfors = null;String[] imfor = null;String name = "";boolean bool = false;while(true){result = "";System.out.println("请输入关键字(按姓名查找):");name = sc.next();bool = false;if (content.indexOf(name) != -1) {imfors = content.split("<==>");for (int i = 0; i < imfors.length; i++) {if (imfors[i].indexOf(name) != -1) {imfor = imfors[i].split("<>");if (imfor[0].equals(name)) {bool = true;result = result + imfors[i] + "<==>";}}}if (bool) {imfors = result.split("<==>");System.out.println("姓名\t电话\tEmail");for (int i = 0; i < imfors.length; i++) {imfor = imfors[i].split("<>");for (int j = 0; j < imfor.length; j++) {System.out.print(imfor[j] + "\t");}System.out.println();}} else {System.out.println("无此人信息");}} else {System.out.println("无此人信息");}System.out.println("0、Exit 1、继续");int i = sc.nextInt();if (i == 0) {break;}}} else {System.out.println("文件还没有记录");}}public void (){System.out.println("———-备份———–");content = readFile();if (isNull(bakPath)) {System.out.println("备份全路径:");bakPath = sc.next();}writeFile(bakPath);System.out.println("备份成功");}public boolean isNull(String string){if (null == string || "" == string || 0 == string.length()) {return true;} else {return false;}}public static void main(String[] args) {AddList add = new AddList();Scanner sc = new Scanner(System.in);int operater = 0;while(true){System.out.println("选择功能:\n1、增加记录 2、删除记录 3、显示所有 4、查询记录 5、备份 6、退出");operater = sc.nextInt();if (1 == operater) {add.addImfor();} else if (2 == operater) {add.deleteImfor();} else if (3 == operater) {add.viewAll();} else if (4 == operater) {add.queryImfor();} else if (5 == operater) {add.();} else if (6 == operater) {System.out.println("谢谢使用");break;}}}}

『捌』 C++的文件输入输出流如何设置输出路径

constchar*fileName="C:\helloworld\test.txt";ofstreamofs(fileName);if(!ofs){cout<<"Cannotopenfile.";return1;}ofs<<10<<""<<123.23<<"";ofs<<"Thisisatext.";ofs.close();

『玖』 急急急java io流 文件路径问题 求解答

FileInputStream file =new FileInputStream(new File("文件路径"))

『拾』 文件流怎么获取网络路径

在请求头里设置Range,可以拿到不同的部分,前提还需要webserver支持。 /***开始下载*@throwsException*/publicvoidstartDown()throwsException{HttpClienthttpClient=newDefaultHttpClient();try{//获取下载文件信息getDownloadFileInfo(httpClient);//启动多个下载线程startDownloadThread();//开始监视下载数据monitor();}catch(Exceptione){throwe;}finally{httpClient.getConnectionManager().shutdown();}}/***获取下载文件信息*/(HttpClienthttpClient)throwsIOException,ClientProtocolException,Exception{HttpHeadhttpHead=newHttpHead(url);HttpResponseresponse=httpClient.execute(httpHead);//获取HTTP状态码intstatusCode=response.getStatusLine().getStatusCode();if(statusCode!=200)thrownewException(“资源不存在!”);if(getDebug()){for(Headerheader:response.getAllHeaders()){System.out.println(header.getName()+”:”+header.getValue());}}//Content-LengthHeader[]headers=response.getHeaders(“Content-Length”);if(headers.length>0)contentLength=Long.valueOf(headers[0].getValue());httpHead.abort();httpHead=newHttpHead(url);httpHead.addHeader(“Range”,”bytes=0-“+(contentLength-1));response=httpClient.execute(httpHead);if(response.getStatusLine().getStatusCode()==206){acceptRanges=true;}httpHead.abort();}/***启动多个下载线程*@throwsIOException*@throwsFileNotFoundException*/()throwsIOException,FileNotFoundException{//创建下载文件Filefile=newFile(localPath);file.createNewFile();RandomAccessFileraf=newRandomAccessFile(file,”rw”);raf.setLength(contentLength);raf.close();//定义下载线程事件实现类=newDownloadThreadListener(){publicvoidafterPerDown(DownloadThreadEventevent){//下载完一个片段后追加已下载字节数synchronized(object){DownloadTask.this.receivedCount+=event.getCount();}}publicvoiddownCompleted(DownloadThreadEventevent){//下载线程执行完毕后从主任务中移除threads.remove(event.getTarget());if(getDebug()){System.out.println(“剩余线程数:”+threads.size());}}};//不支持多线程下载时if(!acceptRanges){if(getDebug()){System.out.println(“该地址不支持多线程下载”);}//定义普通下载DownloadThreadthread=newDownloadThread(url,0,contentLength,file,false);thread.addDownloadListener(listener);thread.start();threads.add(thread);return;}//每个请求的大小longperThreadLength=contentLength/threadCount+1;longstartPosition=0;longendPosition=perThreadLength;//循环创建多个下载线程do{if(endPosition>=contentLength)endPosition=contentLength-1;DownloadThreadthread=newDownloadThread(url,startPosition,endPosition,file);thread.addDownloadListener(listener);thread.start();threads.add(thread);startPosition=endPosition+1;//此处加1,从结束位置的下一个地方开始请求endPosition+=perThreadLength;}while(startPosition<contentLength);}

未经允许不得转载:山九号 » 文件流路径|文件流怎么获取网络路径

赞 (0)