Difference between Reader/Writer and InputStream/Output
Stream?

Answer Posted / geetha

The reader/writer is character oriented, and the
input/output stream is byte oriented.

Is This Answer Correct ?    17 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why is it called a string?

569


What are the different collection views provided by maps?

573


Can we create our own daemon thread?

544


What is gui programming?

524


What is java util list?

489






Is java based on c?

541


Can an integer be null java?

563


How define set in java?

521


What will be the output of round(3.7) and ceil(3.7)?

685


What is the meaning of nullable?

580


What do you mean by inner class in java? Explain

592


Which sort is best in java?

537


Why do we use bufferedreader?

542


State the significance of public, private, protected class?

658


Is there any way to find whether software installed in the system is registered by just providing the .exe file? I have tried the following code but its just displaying the directory structure in the registry. Here the code : package com.msi.intaller; import java.util.Iterator; import ca.beq.util.win32.registry.RegistryKey; import ca.beq.util.win32.registry.RootKey; public class RegistryFinder { public static void main(String... args) throws Exception { RegistryKey.initialize(RegistryFinder.class.getResource("jRe gistryKey.dll").getFile()); RegistryKey key = new RegistryKey(RootKey.HKLM, "Software\\ODBC"); for (Iterator subkeys = key.subkeys(); subkeys.hasNext();) { RegistryKey subkey = subkeys.next(); System.out.println(subkey.getName()); // You need to check here if there's anything which matches "Mozilla FireFox". } } }

1356