What is the basic functionality of DataOutput interface in
java?
Answer Posted / sri
DataOut is a contract for DataOutputStream, whose main
intension is to write primtive data types and String into
stream , by converting them into bytes.
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What is early binding and late binding in java?
What is definition and declaration?
What is java virtual machine? Explain
What is anagram word?
Is java still relevant?
What is tree in java?
What is locale in java?
What is field name?
What sorting algorithm does javascript use?
Explain the transient field modifier?
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
Write a program to print count of empty strings in java 8?
What do you mean by a JVM?
Explain about wait() method?
how we can make a write-only class in java?