Explore >> Select a destination


You are here

netopyr.com
| | initialcommit.com
2.7 parsecs away

Travel
| | In this article, we'll discuss getting started with Java Visualizer - a visual tool that can be useful for Java developers of all skill levels to better understand and troubleshoot their code.
| | www.codeandunicorns.com
2.7 parsecs away

Travel
| | The following article is a a very simple presentation with examples and explanation regarding the web crawler I made in Java. The idea behind it was to make portable (Java+Sqllite - No install needed for DB) and simple (The program was not designed to be scalable, be multithreaded, store a lot of data about the site or make a clever ranking, but it was rather aimed as a very simple working indexed & webcrawler).
| | b.agilob.net
1.9 parsecs away

Travel
| |
| | componenthouse.com
18.3 parsecs away

Travel
| I wanted tocompare how Java, C++ and C perform whenreading a text file line by line and printing the output. I've implemented some possibilities and, at the end, we can compare the speed of each execution. Java 7 version (BufferedReader) import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; public class Main7 { private static final...