Archive for the ‘Java’ Category

Java Program 15 – HashSet

Program

import java.io.*;
import java.util.*;

class Student{

    int rollno;
    String name;
    String address;

    public Student(){

    }
    
    public Student(int a, String b, String c){
    
        this.rollno=a;
        this.name=b;
        this.address=c;
    }
    
    public String toString(){
    
        System.out.println("Rollno : " + rollno);
        System.out.println("Name : " + name);
        System.out.println("Name : " + address);
        return("");
    }
    
    public void display(){
    
        System.out.println("Rollno : " + rollno);
        System.out.println("Name : " + name);
        System.out.println("Address : " + address);
    }

    Read more »

Java Program 14 – ArrayList

Program

import java.io.*;
import java.util.*;

class Student{

    int rollno;
    String name;
    String address;

    public Student(){

    }
    
    public Student(int a, String b, String c){
    
        this.rollno=a;
        this.name=b;
        this.address=c;
    }
    
    public String toString(){
    
        System.out.println("Rollno : " + rollno);
        System.out.println("Name : " + name);
        System.out.println("Name : " + address);
        return("");
    }
    

Read more »

Java Program 13 – File Read and Write

Program

import java.io.*;

class TestFileOutput{
    
    public static void main(String args[]){
        
        FileInputStream fin=null;
        FileOutputStream fout=null;
        
        try{
        
            fin=new FileInputStream("TestCar.java");
            fout=new FileOutputStream("output.txt",true);
            
            int filesize=fin.available();
            byte b[]=new byte[filesize];
            fin.read(b);
            String s=new String(b);
            byte b1[]=new byte[100];
            //fout.write(s1);
            fout.write(b);

Read more »