| source code java | | 2008-07-20 04:21:49 | | public class MyFirstInternetAddress{ public static void main(String args[]) { try { InetAddress localaddr = InetAddress.getLocalHost(); System.out.println ("Local IP Address : " + localaddr ); System.out.println ("Local hostname : " + localaddr.getHostName()); } catch (UnknownHostException e) { System.err.println ("Can't detect localhost : " + e); } } /** Converts a byte_array of octets into a string */ public static String byteToStr( byte[] byte_arr ) { StringBuffer internal_buffer = new StringBuffer(); // Keep looping, and adding octets to the IP Address for (int index = 0; index < byte_arr.length -1; index++) { internal_buffer.append ( String.valueOf(byte_arr[index]) + "."); } // Add the final octet, but no trailing '.' internal_buffer.append ( String.valueOf (byte_arr.length) ); return internal_buffer.toString(); }}Compile and run this application, and you should be told your local IP address, and hostname. Don't worry if your computer isn't connect... | | By: Free Download Books | | |
|
| How to get html source code of a website | | 2008-07-02 07:49:52 | | In this article, I will be illustrating about getting html source code of any website. I have done this in PHP.
I created an html form for submitting the website url. After the url is submitted, the PHP code does all the magic to display full html source code of that particular website. The source code [...]... | | By: Mukesh Chapagain\'s Blog | | |
|
|
|
|
|
|
| .NET Framework Source Code | | 2008-01-17 05:47:00 | | Si si, parecía joda pero es verdad. Ya está disponible el código fuente de Framework para Visual Studio 2008.Aprende como configurar VS 2008 para debuggear el .net Framework Open Source en el blog de Shawn Burke's Blog Espero que al ver el fuente no nos decepcione ;)... | | By: Bitácora del Desarrollador | | |
|
|
|
| Full Source Code "Recent Comments" For Blogger Beta | | 2007-10-03 07:31:40 | | Beberapa rekan mengirim saya email dan menanyakan apakah saya mempunyai source
code untuk "Recent Comment" atau yang biasa kita sebut dengan
"Komentar Terbaru". Kalo
tidak salah ada 5 email menanyakan hal sama, dari pada saya membalas satu
persatu email tersebut lebih baik saya posting di blog saja, source code ini
bukan buatan saya tapi buatan Hans Oosting yang beralamat di
http://... | | By: :: Oom's Visual Basic Tutorial :: | | |
|
| Full Source Code "Recent Post" For Blogger Beta | | 2007-10-03 07:31:40 | | Posting terbaru atau biasa disebut Recent
Post merupakan informasi singkat dari judul posting terbaru yang ditampilkan
secara berurutan agar memudahkan pengunjung melihat urutan posting yang telah
kita buat. Untuk membuat recent post kita bisa menggunakan source code dibawah.
Mengenai cara penggunaan code telah saya jelaskan pada posting
Full source code "Recent Comments" for blogger" jadi
... | | By: :: Oom's Visual Basic Tutorial :: | | |
|
| BEST BUY : 11 CD Full Source Code Untuk Programmer | | 2007-09-01 20:57:00 | | Selama
ini para programmer mungkin mengalami kesulitan dalam mencari source code (Visual
Basic, Java/Javascript, C/C++, Active Server
Pages, .NET, PHP, Delphi). Dari pada pusing dan menghabiskan waktu
serta menguras keuangan, saya menyarankan lebih baik kalian membeli
Planet Source Code Jumbo CD. Dengan harga CD yang tidak mahal saya
yakin kalian tidak akan rugi. Coba pikir kembali waktu dan... | | By: :: Oom's Visual Basic Tutorial :: | | |
|
|
| HTML beginners - copying source code. | | 2007-07-28 20:39:00 | | HTMLAlthough blog software does makes it possible to produce your pages without knowing any web coding, there are times when you do need to enter html. If nothing else you are likely to need to enter web links in your posts or sidebar from time to time. If you don't know any html do not despair! There are ways round it.Any browser will allow you to view the page source,, but finding the particular code may not be easy but, as I like 'easy', here are better options if you want to just find out code for part of a web page.If you just want to create a link or clickable image you can use an online tool such as Quick Link Maker.Firefox offers an inbuilt solution, which will show you the source code for any text you wish to know the html code for; including links:Highlight any text on a page, right click and choose 'View Selection Source' from the drop down menu. A window will appear showing a snippet of html code, with the the area you selected highlighted.It is usually just a matter... | | By: Blogging Sueblimely | | |
|
|