473,322 Members | 1,431 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,322 software developers and data experts.

java.lang.NoClassDefFoundError

Lem
I get the error
Exception in thread "main" java.lang.NoClassDefFoundError

when I type java app2 in the command prompt. I've tried moving to the jre
directory and typed java c:\app2\app2, but it gives me the same exception.
What could be the problem?

Thanks in advance,
Lem
Jul 17 '05 #1
11 167029
Lem
There is nothing wrong with the code, it compiles fine, moreover the sdk
examples do not work as well.

Lem
Jul 17 '05 #2
In article <bg**********@nobel.pacific.net.sg>, Lem wrote:
There is nothing wrong with the code, it compiles fine, moreover the sdk
examples do not work as well.


If the SDK examples also don't work, then that seems to point back to a
CLASSPATH problem. To verify that this is the issue, you can try
invoking java using the cp switch to tell it explicitly where to find the class.
For example, if your app2.class is in a directory called c:\mydir, then
you could try

java -cp c:\mydir app2

(assuming the cp switch works the same in the Windows implementation -
I'm working from a linux box). If that works, then we at least know
that it's a classpath problem.

Mel Roman
me*@melroman.net
Jul 17 '05 #3
Lem
Thanks, the -cp switch worked, one thing I don't understand though, I ran my
app from its directory, shouldn't the jre start searching there first?

Thanks in advacnce,
Lem
"Mel Roman" <me*@melroman.net> wrote in message
news:IO*******************@news04.bloor.is.net.cab le.rogers.com...
In article <bg**********@nobel.pacific.net.sg>, Lem wrote:
There is nothing wrong with the code, it compiles fine, moreover the sdk
examples do not work as well.

If the SDK examples also don't work, then that seems to point back to a
CLASSPATH problem. To verify that this is the issue, you can try
invoking java using the cp switch to tell it explicitly where to find the

class. For example, if your app2.class is in a directory called c:\mydir, then
you could try

java -cp c:\mydir app2

(assuming the cp switch works the same in the Windows implementation -
I'm working from a linux box). If that works, then we at least know
that it's a classpath problem.

Mel Roman
me*@melroman.net

Jul 17 '05 #4
In article <bg**********@nobel.pacific.net.sg>, Lem wrote:
Thanks, the -cp switch worked, one thing I don't understand though, I ran my
app from its directory, shouldn't the jre start searching there first?
--


At least this confirms that it's a classpath problem. As you say,
java should search the current directory (as well as those directories
specified in your CLASSPATH environment variable) to find your
app2.class file. Specifically, if your app2.class file is in your
c:\mydir directory, then you should be able to run app2 like this:

cd c:\mydir
java app2

You've already confirmed that you've tried this without success. I
can't explain why that isn't working for you. Perhaps one of our more
experienced brethren can offer an explanation.

At any rate, another poster recommended that you check and (if
necessary) modify your CLASSPATH. You'll probably want to define a file
hierarchy for storing all of your compiled *.class files (organized by
package) and put the top-level directory of that hierarchy in your CLASSPATH.
This link in the Sun tutorial talks about this:

http://java.sun.com/docs/books/tutor...gingfiles.html

Good luck,
Mel Roman
me*@melroman.net
Jul 17 '05 #5
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Mel Roman wrote:

<snip>
cd c:\mydir
java app2

You've already confirmed that you've tried this without success. I
can't explain why that isn't working for you. Perhaps one of our
more experienced brethren can offer an explanation.

<snip>

Hi,
I have a pretty good idea of what the problem MIGHT be. The virtual
machine doesn't search in the current directory for class files,
unless the CLASSPATH variable is not set, or tells it to. That is, if
you must set CLASSPATH, set it so that the first item is . like this:

If your CLASSPATH needs to include "c:\mylib.jar" for some reason, and
it is set like so:

SET CLASSPATH=c:\mylib.jar

replace it with this:

SET CLASSPATH=.;c:\mylib.jar

On the other hand, if you don't need CLASSPATH, get rid of it and
everything should also be fine.

- --
Chris
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.2 (GNU/Linux)

iD8DBQE/JFI/wxczzJRavJYRAqTdAKCRr4fO/sk6my29ZV/HijfWHf47jQCg+WcF
du0UvkOHQImkzTfVWRbRAPk=
=AVqY
-----END PGP SIGNATURE-----
Jul 17 '05 #6
In article <Rw********************@news1.telusplanet.net>, Chris wrote:

I have a pretty good idea of what the problem MIGHT be. The virtual
machine doesn't search in the current directory for class files,
unless the CLASSPATH variable is not set, or tells it to. That is, if
you must set CLASSPATH, set it so that the first item is . like this:


Thanks for the input, Chris. I was playing with this a little while ago
myself. I didn't initially have any CLASSPATH variable, and executing
java myapp from within myapp's current directory worked just fine. Even
after setting my CLASSPATH to /home/mel/java, I can still always execute
an app from the current directory (outside of the CLASSPATH). Your
comments make me wonder if different java implementations behave differently.

Lem: Try doing what Chris says and see if that allows you to execute
"normally" (without the -cp switch) from the current directory. I'd be
interested in hearing your answer.

-

Mel Roman
me*@melroman.net
Jul 17 '05 #7
Lem
Thanks, it works =)

Lem
"Mel Roman" <me*@melroman.net> wrote in message
news:98*******************@news04.bloor.is.net.cab le.rogers.com...
In article <Rw********************@news1.telusplanet.net>, Chris wrote:

I have a pretty good idea of what the problem MIGHT be. The virtual
machine doesn't search in the current directory for class files,
unless the CLASSPATH variable is not set, or tells it to. That is, if
you must set CLASSPATH, set it so that the first item is . like this:
Thanks for the input, Chris. I was playing with this a little while ago
myself. I didn't initially have any CLASSPATH variable, and executing
java myapp from within myapp's current directory worked just fine. Even
after setting my CLASSPATH to /home/mel/java, I can still always execute
an app from the current directory (outside of the CLASSPATH). Your
comments make me wonder if different java implementations behave

differently.
Lem: Try doing what Chris says and see if that allows you to execute
"normally" (without the -cp switch) from the current directory. I'd be
interested in hearing your answer.

-

Mel Roman
me*@melroman.net

Jul 17 '05 #8
On Sun, 27 Jul 2003 20:40:06 +0800, "Lem" <hj***@pacific.net.sg>
wrote:
I get the error
Exception in thread "main" java.lang.NoClassDefFoundError

when I type java app2 in the command prompt. I've tried moving to the jre
directory and typed java c:\app2\app2, but it gives me the same exception.
What could be the problem?

Thanks in advance,
Lem


You didn't say what environment, but your example above uses
DOS/Windows directory syntax. Sun's Java CL (if that's what you are
using) has Unix CL semantics ... try prefixing ".\" (current
directory) to the name of the class file you want to run, eg., "java
..\app2".

If that doesn't work, try using forward slashes "/" in the filespec.
There is (or use to be) an environment setting for the JRE that tells
it which to expect ... sorry, I don't remember what the setting is/was
- I only had to use it once long ago.

George

Jul 17 '05 #9
In article <3f***********************@news.dial.pipex.com>, Peter Bradley wrote:
Hi guys and gals,

I've never understood $CLASSPATH and packages and friends - but I had the
same problem, which is why I'm reading this thread.


I can't be sure, but I suspect that this Chris' comments may apply here
again. What is the value of your CLASSPATH variable? As Chris said,
clearing it may force java to look in your current directory.
--

Mel Roman
me*@melroman.net
Jul 17 '05 #10
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

<posted & mailed>

Peter Bradley wrote:
Hi guys and gals,

I've never understood $CLASSPATH and packages and friends - but I
had the same problem, which is why I'm reading this thread.

After looking at the replies (and remembering some odd experiences
I'd had with a previous excursion into Javaland) I tried calling the
program from the directory above where it resides.

To illustrate. Here's the code:

<codeextract>

package ConnectorJTest;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;

public class LoadDriver {

public static void main(String[] args) {
try {
Class.forName("com.mysql.jdbc.Driver").newInstance ();
System.out.println("Success!");
} catch (Exception ex) {
// Handle the error
System.out.println("Failure!");
}
}
}

</codeextract>

The program is in
/home/peter/connector_j_test/ConnectorJTest/LoadDriver.class

Now, if I call the program by going to the ConnectorJTest and doing:

java LoadDriver

I get:

<output>

peter@linux:~/connector_j_test/ConnectorJTest> java LoadDriver
Exception in thread "main" java.lang.NoClassDefFoundError:
LoadDriver (wrong name: ConnectorJTest/LoadDriver)
at java.lang.ClassLoader.defineClass0(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java :502)
at
java.security.SecureClassLoader.defineClass(Secure ClassLoader.java:123) at
java.net.URLClassLoader.defineClass(URLClassLoader .java:250)
at
java.net.URLClassLoader.access$100(URLClassLoader. java:54)
at java.net.URLClassLoader$1.run(URLClassLoader.java: 193) at
java.security.AccessController.doPrivileged(Native Method)
at
java.net.URLClassLoader.findClass(URLClassLoader.j ava:186)
at java.lang.ClassLoader.loadClass(ClassLoader.java:2 99) at
sun.misc.Launcher$AppClassLoader.loadClass(Launche r.java:265) at java.lang.ClassLoader.loadClass(ClassLoader.java:2 55) at
java.lang.ClassLoader.loadClassInternal(ClassLoade r.java:315)
</output>

And if I try the fully qualified name from the same directory, I
get:

<output>

peter@linux:~/connector_j_test/ConnectorJTest> java
ConnectorJTest.LoadDriver
Exception in thread "main" java.lang.NoClassDefFoundError:
ConnectorJTest/LoadDriver

</output>

However if I move up a directory and give the fully qualified name,
I get:

<output>
peter@linux:~/connector_j_test> java ConnectorJTest.LoadDriver
Success!

</output>

Any explanation (preferably rational, though :) ) would be
gratefully received

Cheers

Peter


Hi,
After working with Java for a while, I seem to understand the
CLASSPATH/packages thing. Here goes:

Every class has a package. If one isn't specified when it's created,
it's in the root package, but it still "has" a package.

If you create the following file in the current directory:

package com.somecompany.test;

public class Test {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}

and run javac on it directly:
javac Test.java
It produces a file called Test.class in the current directory, which
fails utterly when you try to run it. See, each piece of the package
name is supposed to correspond to a physical directory name in the
filesystem. When you run javac as above, it outputs the class file in
the current directory. If, on the other hand, you were to put the
above source into a file com/somecompany/test/Test.java, staying in
the same directory (not descending in deeper), compiling it would
create com/somecompany/test/Test.class, which you could then run by
typing "java com.somecompany.test.Test". The idea is that by using
the filesystem like this, packages are useful. If two companies make
two classes with the same name, they put them in different packages.
Thus, inside the VM, everyone is sure which class is being referred
to. By using directories in the filesystem, both classes can be put
in "the same place" but they won't overwrite each other.

If you type in "java com.somecompany.test.Test", here's what happens:

The JVM needs to find the class. Ignoring the jre/lib/ext directory
for the time being, we'll assume a CLASSPATH variable set to
/home/me/java. The JVM does this internally:

REALPATH=$CLASSPATH/$PACKAGENAME/$CLASSNAME
Thus, the real path is
/home/me/java/com/somecompany/test/Test.class
which exists.

Why it doesn't work moving into that directory and just typing "java
Test", is because the class file has the package name that it was
meant to be inside of embedded when it's compiled. The JVM detects
that although it seems to be able to find the class, it must be the
wrong file because by typing the above command line, you're asking
for a class in the root package, and the file it found isn't in the
root package. It assumes something is wrong.

Now, personally, I don't actually even have the CLASSPATH set. This
means the JVM defaults to "." as its value. Thus:

java com.somecompany.test.Test

loads

../com/somecompany/test/Test.class

which contains the package name inside the file:

com.somecompany.test

which the JVM checks against the command line, and sees that it
matches, so everything is good. Thus, I can just invoke any class I
need by changing to its root directory (which, of course, isn't
necessarily the directory containing the class file--in the case of
packages, it's the directory containing the highest-level package
name).

For libraries, I find, easier than downloading the JAR file and adding
it to the CLASSPATH, just put it into the jre/lib/ext directory.
Every JAR file in jre/lib/ext is automatically put in the classpath.
Thus, if I use the MySQL connector, and the JVM tries to find this
class:

com.mysql.jdbc.Driver

it takes the classpath element like this (filename shortened):

/usr/java/j2sdk1.4.2/jre/lib/ext/mysql.jar

appends the names just like I described previously, producing this
physical path:

/usr/java/j2sdk1.4.2/jre/lib/ext/mysql.jar/com/mysql/jdbc/Driver

which looks ridiculous, since it describes a directory inside a file,
but, what happens, is that inside the mysql.jar file is a zipped
directory called com, which contains a directory called mysql, etc.
etc. etc. and everything works.

Basically, just remember:

- - When invoking a class that is in a package, you have to include the
package name on the command line.

- - When invoking a class that is in a package, the class file needs to
be contained in a directory structure matching the package name, OFF
OF whatever element in CLASSPATH is relevant. If there's a package
name, the class file isn't going to be right in the directory, it'll
be in a subdirectory.

- - To include a JAR file, just put the path to the JAR itself in the
CLASSPATH, and the file acts like a root directory in terms of
packaging. It doesn't work just putting the directory containing the
JAR in your classpath, primarily because that would imply the name of
the JAR file is part of the package name (good luck trying to get the
".jar" part to go into the package name without being converted into
a subdirectory <VBG>)

Rational explanation? Lunatic rambling? Probably both. Hope it helped
though :)

- --
Chris
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.2 (GNU/Linux)

iD8DBQE/KYnBwxczzJRavJYRAvGGAKCy9PNnjXfk5jtxHm9utwrGBZXbzg CglmIS
+gbxA2LvEiioKieWoT9jsxY=
=s0Na
-----END PGP SIGNATURE-----
Jul 17 '05 #11
Chris,

If you are ever unable to get development work, go into teaching.
Great! I see it all now. Couldn't be clearer.

Many thanks.

Peter

Chris wrote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

<posted & mailed>

Peter Bradley wrote:

Hi guys and gals,

I've never understood $CLASSPATH and packages and friends - but I
had the same problem, which is why I'm reading this thread.

After looking at the replies (and remembering some odd experiences
I'd had with a previous excursion into Javaland) I tried calling the
program from the directory above where it resides.

To illustrate. Here's the code:

<codeextract>

package ConnectorJTest;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;

public class LoadDriver {

public static void main(String[] args) {
try {
Class.forName("com.mysql.jdbc.Driver").newInstance ();
System.out.println("Success!");
} catch (Exception ex) {
// Handle the error
System.out.println("Failure!");
}
}
}

</codeextract>

The program is in
/home/peter/connector_j_test/ConnectorJTest/LoadDriver.class

Now, if I call the program by going to the ConnectorJTest and doing:

java LoadDriver

I get:

<output>

peter@linux:~/connector_j_test/ConnectorJTest> java LoadDriver
Exception in thread "main" java.lang.NoClassDefFoundError:
LoadDriver (wrong name: ConnectorJTest/LoadDriver)
at java.lang.ClassLoader.defineClass0(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java :502)
at


java.security.SecureClassLoader.defineClass(Secure ClassLoader.java:123)
at
java.net.URLClassLoader.defineClass(URLClassLoader .java:250)
at
java.net.URLClassLoader.access$100(URLClassLoader. java:54)
at java.net.URLClassLoader$1.run(URLClassLoader.java: 193) at
java.security.AccessController.doPrivileged(Native Method)
at
java.net.URLClassLoader.findClass(URLClassLoader.j ava:186)
at java.lang.ClassLoader.loadClass(ClassLoader.java:2 99) at


sun.misc.Launcher$AppClassLoader.loadClass(Launche r.java:265)
at java.lang.ClassLoader.loadClass(ClassLoader.java:2 55) at


java.lang.ClassLoader.loadClassInternal(ClassLoade r.java:315)
</output>

And if I try the fully qualified name from the same directory, I
get:

<output>

peter@linux:~/connector_j_test/ConnectorJTest> java
ConnectorJTest.LoadDriver
Exception in thread "main" java.lang.NoClassDefFoundError:
ConnectorJTest/LoadDriver

</output>

However if I move up a directory and give the fully qualified name,
I get:

<output>
peter@linux:~/connector_j_test> java ConnectorJTest.LoadDriver
Success!

</output>

Any explanation (preferably rational, though :) ) would be
gratefully received

Cheers

Peter

Hi,
After working with Java for a while, I seem to understand the
CLASSPATH/packages thing. Here goes:

Every class has a package. If one isn't specified when it's created,
it's in the root package, but it still "has" a package.

If you create the following file in the current directory:

package com.somecompany.test;

public class Test {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}

and run javac on it directly:
javac Test.java
It produces a file called Test.class in the current directory, which
fails utterly when you try to run it. See, each piece of the package
name is supposed to correspond to a physical directory name in the
filesystem. When you run javac as above, it outputs the class file in
the current directory. If, on the other hand, you were to put the
above source into a file com/somecompany/test/Test.java, staying in
the same directory (not descending in deeper), compiling it would
create com/somecompany/test/Test.class, which you could then run by
typing "java com.somecompany.test.Test". The idea is that by using
the filesystem like this, packages are useful. If two companies make
two classes with the same name, they put them in different packages.
Thus, inside the VM, everyone is sure which class is being referred
to. By using directories in the filesystem, both classes can be put
in "the same place" but they won't overwrite each other.

If you type in "java com.somecompany.test.Test", here's what happens:

The JVM needs to find the class. Ignoring the jre/lib/ext directory
for the time being, we'll assume a CLASSPATH variable set to
/home/me/java. The JVM does this internally:

REALPATH=$CLASSPATH/$PACKAGENAME/$CLASSNAME
Thus, the real path is
/home/me/java/com/somecompany/test/Test.class
which exists.

Why it doesn't work moving into that directory and just typing "java
Test", is because the class file has the package name that it was
meant to be inside of embedded when it's compiled. The JVM detects
that although it seems to be able to find the class, it must be the
wrong file because by typing the above command line, you're asking
for a class in the root package, and the file it found isn't in the
root package. It assumes something is wrong.

Now, personally, I don't actually even have the CLASSPATH set. This
means the JVM defaults to "." as its value. Thus:

java com.somecompany.test.Test

loads

./com/somecompany/test/Test.class

which contains the package name inside the file:

com.somecompany.test

which the JVM checks against the command line, and sees that it
matches, so everything is good. Thus, I can just invoke any class I
need by changing to its root directory (which, of course, isn't
necessarily the directory containing the class file--in the case of
packages, it's the directory containing the highest-level package
name).

For libraries, I find, easier than downloading the JAR file and adding
it to the CLASSPATH, just put it into the jre/lib/ext directory.
Every JAR file in jre/lib/ext is automatically put in the classpath.
Thus, if I use the MySQL connector, and the JVM tries to find this
class:

com.mysql.jdbc.Driver

it takes the classpath element like this (filename shortened):

/usr/java/j2sdk1.4.2/jre/lib/ext/mysql.jar

appends the names just like I described previously, producing this
physical path:

/usr/java/j2sdk1.4.2/jre/lib/ext/mysql.jar/com/mysql/jdbc/Driver

which looks ridiculous, since it describes a directory inside a file,
but, what happens, is that inside the mysql.jar file is a zipped
directory called com, which contains a directory called mysql, etc.
etc. etc. and everything works.

Basically, just remember:

- - When invoking a class that is in a package, you have to include the
package name on the command line.

- - When invoking a class that is in a package, the class file needs to
be contained in a directory structure matching the package name, OFF
OF whatever element in CLASSPATH is relevant. If there's a package
name, the class file isn't going to be right in the directory, it'll
be in a subdirectory.

- - To include a JAR file, just put the path to the JAR itself in the
CLASSPATH, and the file acts like a root directory in terms of
packaging. It doesn't work just putting the directory containing the
JAR in your classpath, primarily because that would imply the name of
the JAR file is part of the package name (good luck trying to get the
".jar" part to go into the package name without being converted into
a subdirectory <VBG>)

Rational explanation? Lunatic rambling? Probably both. Hope it helped
though :)

- --
Chris
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.2 (GNU/Linux)

iD8DBQE/KYnBwxczzJRavJYRAvGGAKCy9PNnjXfk5jtxHm9utwrGBZXbzg CglmIS
+gbxA2LvEiioKieWoT9jsxY=
=s0Na
-----END PGP SIGNATURE-----


Jul 17 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Andy Howells | last post by:
Can anybody help me on this? I am getting the below error but have not got a clue why. The file in my classpath eing used has the class that it says is not defined. Any ideas? I am running java...
0
by: Shawn | last post by:
I am getting the following error with a Java Applet being served out by IIS over HTTPS/SSL using a Verisign certificate: java.lang.NoClassDefFoundError: javax/help/HelpSetException at...
3
by: NathanK | last post by:
Hi Guys, im starting out in java and i'm getting the error: Exception in thread "main" java.lang.NoClassDefFoundError: blurf if i run "javac blurf.java", it compiles fine and without any...
1
by: greg.knaddison | last post by:
Hi, I'm trying to use the httpclient within Jython (see http://jakarta.apache.org/commons/httpclient/ for more information on the httpclient). My Jython version is: Jython 2.1 on...
0
by: HiteshMehra | last post by:
Hi all, I am getting an error while trying to connect to the MQ. The error is java.lang.NoClassDefFoundError: com/ibm/mq/server/MQSESSION at...
4
by: jmitch89 | last post by:
I don't why I get this error: Exception in thread "main" java.lang.NoClassDefFoundError The statement below works just fine: java -cp...
4
by: xtremebass | last post by:
Hi Bytes, i run the sample java code(BarChartDemo.java)which is producing the Bar charts as output if no error in the program, but i got run time error like this, ...
1
by: rajujrk | last post by:
Hai All, I am Having a problem in the following... import org.apache.commons.net.ftp.FTPClient; import org.apache.commons.net.ftp.FTPFile; import org.apache.commons.io.FileUtils; import...
1
by: James Kalmadge | last post by:
I have a test program that compiles but does not run. Here is the code which I grabbed from from a web site: import java.awt.*; import java.awt.event.*; import java.io.*; import java.util.*;...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.