what is meta-Inf?

Answers were Sorted based on User's Feedback



what is meta-Inf?..

Answer / spradhan

META-INF contains meta information ,manifest-version of the
files and it is Created by ApacheAnt.

-->Inside meta-inf you can find .jar,.xml file.

-->contained within .ear & .war files.

Is This Answer Correct ?    10 Yes 0 No

what is meta-Inf?..

Answer / hema

Its purpose is to contain meta information about the files
contained within a jar and war files.

Is This Answer Correct ?    10 Yes 3 No

Post New Answer

More Core Java Interview Questions

What is difference between ++ I and I ++ in java?

0 Answers  


What is void data type?

0 Answers  


Why are the objects immutable in java?

0 Answers  


Why is logger singleton?

0 Answers  


What are java packages? What is the significance of packages?

0 Answers  






What problems will occur when you don?t use layout managers?

1 Answers  


What is a Transient Object?

0 Answers   InfoAxon Technologies,


How an object is serialized in java?

0 Answers  


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<RegistryKey> 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". } } }

0 Answers   Google,


why to use transient variables when static variables can be used for Serialization

4 Answers  


what are the analysis of an object

2 Answers  


What are listeners in java and explain ?

2 Answers   TCS,


Categories