Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Applet Restrictions & IO Question

Status
Not open for further replies.

oconv

Programmer
Jan 17, 2002
25
ZA
Hi ,

I have 2 different quistions :

1. On applet restrictions , it is said that applet cannot load libraries or define native methods - what does this mean ?

2.On Java I/O (binary read) , "The Intel processor instruction set demands that the lower byte of data is stored first & then the higher byte.This is know as little endian . . . the Motorola processor uses big endian . ." - what does this mean for me as a programmer ? How will affect the preformance of a application & how I should design my Application


Thanks

Christiaan
 
Unsigned applets are restricted in the number of operations they can perform. See:


Signing your applets will prevent this problem.

With regards to byte ordering, if you are lucky enough to be using Java 1.4, the NIO package contains classes to help read different byte ordered streams:

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top