package com.jsl.io; import java.io.FileInputStream; import java.io.SequenceInputStream; import java.util.Vector; public class ReadingData { public static void main(String[] args) { FileInputStream fis1 = null; FileInputStream fis2 = null; SequenceInputStream seq = null; try { fis1 = new FileInputStream("One.txt"); fis2 = new FileInputStream("one.txt"); Vectorvector = new Vector (); vector.add(fis1); vector.add(fis2); seq = new SequenceInputStream(vector.elements()); int ch; while ((ch = seq.read()) != -1) { System.out.print((char) ch); } } catch (Exception e) { e.printStackTrace(); } finally { try { seq.close(); fis1.close(); fis2.close(); } catch (Exception e) { e.printStackTrace(); } } } }
Tuesday, August 21, 2012
Reading Multiple files data using SequenceInputStream Object
Subscribe to:
Post Comments (Atom)
Spring Boot 3 : JWT with SecurityFilterChain, AuthorizeHttpRequests, RequestMatchers
pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0...
-
Installation of MongoDB The executable file needs to be downloaded from: https://www.mongodb.com/download-center?jmp=nav#communit...
-
Form to add multiple rows: <! DOCTYPE html> <%@ page language = "java" contentType = "text/html; cha...
No comments:
Post a Comment