Re: readInt() & byte order

2001-03-21 Thread Ashish
yep i forgot to mention the paltforms for C -Ashish - Original Message - From: "Matthias Pfisterer" <[EMAIL PROTECTED]> To: "Ashish" <[EMAIL PROTECTED]> Cc: "Joaquin Rapela" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday

Re: readInt() & byte order

2001-03-21 Thread Ashish
Answer is simple Java program expects file bytes in big-endian format, while C uses little endian 2175 = > 1000 0111 so java will interpret after assuming it's big endian will be 0111 1000 => 32520 -Ashish - Original Message - From: "Joaquin

Re: Unidentified subject!

2000-11-30 Thread Ashish Kulkarni
NEVER send emails with long attachments on a mailing list : if you have something intresting, put it up on some FTP space and request users to see it via linking a URL to it. otherwise it totally wastes bandwidth. - Original Message - From: lisuke <[EMAIL PROTECTED]> To: <[EMAIL PROTE

Re: Tar

2000-11-20 Thread Ashish Kulkarni
try tar --help ;) actually try using tar tf jdk.tar or if it is gzipped, tar tfz jdk.tar.gz - Original Message - From: Lambert, Stephen : CO IR <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 20, 2000 11:33 PM Subject: Tar | What tar command lists out the conte

Re: How to close ServerSocket

2000-05-14 Thread Ashish
hi the code i posted is not actual code actually ss.close is part of a function which i am calling on certain condition as far as ss.accpet call it is working perfectly i am using jdk1.2.2 on windows NT and jdk1.2.2RC4 on linux ashish - Original Message - From: "Albert Y. C

How to close ServerSocket

2000-05-13 Thread Ashish
{     ss.close(); } catch(Exception e) /* 1 */ { /// }     Ashish

How to close ServerSocket

2000-05-13 Thread Ashish
{     ss.close(); } catch(Exception e) /* 2 */ { /// }     Ashish