datainputstream

  1. nitish_mythology

    Simple programming Error in Java

    I copied a simple program from a book. Author is E.Balaguruswami It was just to show basic input using package io and Datainputstream. After compilation an error was shown-- Note: filename.java uses or overrides a depricated API Note:Recompile with-Xlint:deprication for detail Full code...
  2. QwertyManiac

    A java Problem

    A java problem... heres the code import java.io.*; class DNA { public static void main(String args[]) throws IOException { String A; char a; int i,j; DataInputStream in = new DataInputStream(System.in); A=in.readLine(); j=A.length(); StringBuffer Str = new...
Top Bottom