<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Aplikasi Java Gratis &#124; Download FREE Aplikasi Java &#187; software</title>
	<atom:link href="http://aplikasijavagratis.com/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://aplikasijavagratis.com</link>
	<description>Download Aplikasi Java Gratis , Aplikasi java Download for Nokia, Motorola, Sony Ericsson</description>
	<lastBuildDate>Sat, 04 Sep 2010 05:47:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Java Application Scalability</title>
		<link>http://aplikasijavagratis.com/java-application-scalability/</link>
		<comments>http://aplikasijavagratis.com/java-application-scalability/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 03:49:52 +0000</pubDate>
		<dc:creator>Aplikasi Java Gratis</dc:creator>
				<category><![CDATA[JAVA]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[java application]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[Scalability]]></category>

		<guid isPermaLink="false">http://aplikasijavagratis.com/java-application-scalability/</guid>
		<description><![CDATA[Scalability of applications has become a lot more complex than buying a bigger Windows server or z/OS mainframe.  It is not just a system’s ability to handle user requests well as the numbers grow, but has mostly to do with managing system load, handling priorities, remaining responsive under high-load situations, while scaling as linearly as [...]


Related posts:<ol><li><a href='http://aplikasijavagratis.com/java-ee-application-development-with-apache-the-most-widely-used-web-server-in-the-world/' rel='bookmark' title='Permanent Link: Java Ee Application Development With Apache: The Most Widely Used Web Server In The World'>Java Ee Application Development With Apache: The Most Widely Used Web Server In The World</a></li>
<li><a href='http://aplikasijavagratis.com/build-and-secure-java-applications-with-packt%e2%80%99s-new-book-on-jboss-as/' rel='bookmark' title='Permanent Link: Build and Secure Java Applications with Packt’s new book on JBoss AS'>Build and Secure Java Applications with Packt’s new book on JBoss AS</a></li>
<li><a href='http://aplikasijavagratis.com/javaee-application-development-using-openejb-open-enterprise-java-beans/' rel='bookmark' title='Permanent Link: Java Application Development Using Openejb (Open Enterprise Java Beans)'>Java Application Development Using Openejb (Open Enterprise Java Beans)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Scalability of applications has become a lot more complex than buying a bigger Windows server or z/OS mainframe.  It is not just a system’s ability to handle user requests well as the numbers grow, but has mostly to do with managing system load, handling priorities, remaining responsive under high-load situations, while scaling as linearly as possible. A key problem of large-scale systems is data integrity as the number of transactions with write operations grows and the danger of data locks slowing down the system increases. Often the maximum number of concurrent users is seen as a measurement of scalability, but that is a dangerous shortcut. The number and kind of transactions that are required within a certain time frame is the only true measure of scalability. Response times for a transaction mix should remain below a limit at the expected peak transaction load.</p>
<p>For Java applications is difficult and expensive to achieve predictable, scalable performance. Simple switching from the single-server environments to multi-server can cause overall application throughput to collapse. Adding more data can cause the database to need progressively more resources. Java applications that work instantly in test, can be twenty times slower in response time when loaded with concurrent users.</p>
<p>The only (very complex) way to truly scale Java applications is to <strong>use three server tiers</strong>. The first is a HTTP-driven GUI, the second a Java server that de/serializes the tables of the third database tier into Java <span id="more-120"></span>objects to perform the application logic. These tree tiers are often referred to as clustering, which is incorrect. Clustering is not related to vertically fragmenting the application but paralleling each server tier horizontally. So clustering can only be implemented independently for each of the tiers and requires very different functionality in each. In the case of the Web tier, no server-to-server communication is necessary, whereas at the other extreme, the database tier must manage transactional consistency across its cluster. This means that the cost of scalability is dramatically different for each of those tiers. Management and tuning is also completely different for each as well.</p>
<p>The HTTP tier performs SSL encryption and decryption duties, handles unique client connections by means of HTTP headers with ‘sticky load balancing’ information. HTTP requests are load-balanced across stateless servers and routed to designated J2EE server for processing. The application has to support sticky load balancing from the Web tier to be able to cluster both HTTP and Java tiers. Such Java applications exhibit intra-tier communication complexity that directly impairs scalable performance. The clustering of the database server has to be a function of the database product used, but it is impossible to scale the Java server without implementing some form of local data caching. Common forms are coherent clustered caching, fully replicated caching and partitioned caching.</p>
<p><strong>Clustered caching</strong> maintains data in the Java application tier to satisfy data access requests from the cache without loading the database. The cache must not grow too large and provide data as current as necessary. Not all data is needed up-to-date. The cache expires data by LRU – least recently used and elapsed time algorithms.  In clustered systems, servers notify each other about data modifications and either delete or refresh the outdated data page. Coherent clustered caching needs the same as application logic to synchronize cache pages to guarantee a thread-safe implementation. A kind of dual-phase commit on page changes is required in a distributed cache to maintain transactional data consistency.</p>
<p><strong>A fully replicated cache</strong> however does not have the problems of clustered caching but shares modifications with other members of the cluster in a “push” model.  While the data access has no measurable latency, a transaction should only be closed when the data from the cache has been serialized to the database tier. This is however mostly done in lazy writes and thus risky. The other problem is related to data locking because theoretically two servers can access the same data to write at the same time and therefore cause conflicts at transaction close.</p>
<p><strong>The solution is the partitioned cache</strong> where each cluster server owns one unique fragment of the complete data set. All data are cached to the other servers but writes have to be synchronized to the owning server, but because communication is any-to-any, partitioned caches scale linearly with number of requests and data volume as you add servers. Replicating data from the owner and de-serializing tables into objects adds substantial latency. Therefore the application servers typically ‘object-cache the database-cache’ to avoid the additional de-serialization overhead for multiple object requests. The cache can load many objects from a single cache page in one I/O request rather than reading multiple table entries.</p>
<p>However, a substantially growing number of applications no longer read data from a database. Particularly process oriented applications (and that should be all of them) <strong>require data synchronization via backend interfaces such as SOA</strong> or MQ series from application silos. More often than not such interfaces require stateful conversations. Compared to database access, Web services based communications are at least a magnitude worse in performance, response time and throughput. Much of that has to do with the problems of XML defined data structures, the weak, ambiguous, and non-canonical XSD-based data definitions and the resultant parsing and validation. To reduce the number of transfers, SOA requests often pass a lot of incidental data because it might be needed, to avoid multiple data accesses. Obviously that is similar to creating a kind of SOA cache, but without any of the above mentioned mechanisms of data concurrency. Web services provided data are in principle always out of date. Web services transactions are so slow that they can not be used for applications that involve user interactions but just for straight-through processes without user intervention. To implement <strong>clustered caching for SOA Web services</strong> creates substantial problems, mostly because there is no defined mechanism for push-updates and lazy database writes. All of it has to be manually implemented by the Java programmers and is mostly hard-coded and application specific.</p>
<p>The complexity of measuring and predicting hardware and software performance becomes therefore a very complex task. During my years in IBM one of the key elements of designing a well working mainframe environment was based on the balanced system approach. The right mix of CPU power, RAM, disk I/Os was needed to get the most bang for your buck. Today the need for network bandwidth for the various intricacies of each of the tiers becomes the key element while HW is looked at as a cheap commodity. The immense OVERHEAD involved in juggling Web/HTTP clusters, Java tier clusters and expensive High-Availability clusters for the database tier requires huge amounts of commodity HW that is mostly not balanced to achieve scalable applications. Most systems just provide enough of everything to work. The idea of Cloud computing has to do with providing virtualized resources to such tiered systems adding more overhead for the virtualization. Hm, it sounds not very professional and well thought out to me …</p>
<p>CONCLUSION: Could the substantial overhead in using sticky-load-balancing, transaction-safe Java caching and database clustering, plus the substantial overhead for parsing and validating the XML data for SOA not be avoided? All of the above have been reasons why I chose a different route for the <a onclick="javascript:pageTracker._trackPageview('/outgoing/article_exit_link');" rel="nofollow" href="http://isispapyrus.wordpress.com/2009/07/07/papyrus-application-scalability/">Papyrus Platform</a>. Rather than the immense complexity of multi-layered caches – with multiple conversion from tables to cache pages to objects and reverse – I decided to collapse the horizontal structures and work with a purely (vertical) object model from definition to storage. That enables the use of the meta-data repository for application life-cycle management and substantially simplifies systems management and tuning.</p>
<p>The proxy replication mechanism of the object-relational database of <strong>the Papyrus Platform uses a partitioned caching concept </strong>where there is always a unique data owner and each server node uses a replicated copy that is either pull or push updated as per proxy definition. The objects do not have to be de/serialized as they are cached/replicated/binary stored as is. The same mechanism works transparently for all objects that are populated via Web services or other backend interfaces. The drawback is that during testing or at low load it seems to be not as fast as a Java app, but in difference it does scale linearly without needing additional programming or software as you add more commodity HW. Papyrus uses the same concepts across all servers because there are no tiers necessary and it also does not need virtualization.</p>
<div style="margin: 5px; padding: 5px; border: 1px solid #c1c1c1; font-size: 10px;">
<p><a onclick="javascript:pageTracker._trackPageview('/outgoing/article_exit_link');" rel="nofollow" href="http://www.pucher.us">Max J. Pucher</a> is the founder and current Chief Architect of <a onclick="javascript:pageTracker._trackPageview('/outgoing/article_exit_link');" rel="nofollow" href="http://www.isis-papyrus.com">ISIS Papyrus Software</a>, a globally operating company that specializes in Artificial Intelligence for <a onclick="javascript:pageTracker._trackPageview('/outgoing/article_exit_link');" rel="nofollow" href="http://www.isis-papyrus.com">business process and communication</a>. He has written several books, frequently speaks and writes on IT and holds several patents.</p>
</div>


<p>Related posts:<ol><li><a href='http://aplikasijavagratis.com/java-ee-application-development-with-apache-the-most-widely-used-web-server-in-the-world/' rel='bookmark' title='Permanent Link: Java Ee Application Development With Apache: The Most Widely Used Web Server In The World'>Java Ee Application Development With Apache: The Most Widely Used Web Server In The World</a></li>
<li><a href='http://aplikasijavagratis.com/build-and-secure-java-applications-with-packt%e2%80%99s-new-book-on-jboss-as/' rel='bookmark' title='Permanent Link: Build and Secure Java Applications with Packt’s new book on JBoss AS'>Build and Secure Java Applications with Packt’s new book on JBoss AS</a></li>
<li><a href='http://aplikasijavagratis.com/javaee-application-development-using-openejb-open-enterprise-java-beans/' rel='bookmark' title='Permanent Link: Java Application Development Using Openejb (Open Enterprise Java Beans)'>Java Application Development Using Openejb (Open Enterprise Java Beans)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://aplikasijavagratis.com/java-application-scalability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auto SMS Sender , Free java application</title>
		<link>http://aplikasijavagratis.com/auto-sms-sender-free-java-application/</link>
		<comments>http://aplikasijavagratis.com/auto-sms-sender-free-java-application/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 19:12:42 +0000</pubDate>
		<dc:creator>Aplikasi Java Gratis</dc:creator>
				<category><![CDATA[Windows Mobile]]></category>
		<category><![CDATA[aplikasi java]]></category>
		<category><![CDATA[java application]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[symbian]]></category>
		<category><![CDATA[auto sms sender]]></category>
		<category><![CDATA[auto text message]]></category>
		<category><![CDATA[automatically sms send]]></category>
		<category><![CDATA[free sms]]></category>
		<category><![CDATA[java sms sender]]></category>
		<category><![CDATA[send sms]]></category>
		<category><![CDATA[sms sender]]></category>

		<guid isPermaLink="false">http://aplikasijavagratis.com/?p=100</guid>
		<description><![CDATA[Send SMS , Short Message Service , Text Message Send by set the timer , you may send sms for specific time or day. Also may send text msg directly without timer. This Java need to running continuesly / multitasking. Cause it must running background to process you sms send. Some Java phone support it, [...]


Related posts:<ol><li><a href='http://aplikasijavagratis.com/al-quran-pocket-pocketquran/' rel='bookmark' title='Permanent Link: Al-Quran Pocket / PocketQuran'>Al-Quran Pocket / PocketQuran</a></li>
<li><a href='http://aplikasijavagratis.com/email-reader-java-application/' rel='bookmark' title='Permanent Link: Email reader &#8211; Java Application'>Email reader &#8211; Java Application</a></li>
<li><a href='http://aplikasijavagratis.com/file-lock/' rel='bookmark' title='Permanent Link: File Lock'>File Lock</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" title="Auto-Sms-Sender" src="http://aplikasijavagratis.com/download/auto-msg.jpg" alt="Auto SMS Sender" width="242" height="322" /></p>
<p style="text-align: center;">Send SMS , Short Message Service , Text Message</p>
<p style="text-align: center;">Send by set the timer , you may send sms for specific time or day.</p>
<p style="text-align: center;">Also may send text msg directly without timer.</p>
<p style="text-align: center;">This Java need to running continuesly / multitasking. Cause it must running background to process you sms send.</p>
<p style="text-align: center;">Some Java phone support it, Symbian OS also run well. Mobile phone with Windows Mobile OS perfect run.<span id="more-100"></span></p>
<p style="text-align: center;">Save the <a title="download" href="http://aplikasijavagratis.com/download/auto-msg.jar">Auto SMS Sender</a> Jar , and install on your phone.</p>


<p>Related posts:<ol><li><a href='http://aplikasijavagratis.com/al-quran-pocket-pocketquran/' rel='bookmark' title='Permanent Link: Al-Quran Pocket / PocketQuran'>Al-Quran Pocket / PocketQuran</a></li>
<li><a href='http://aplikasijavagratis.com/email-reader-java-application/' rel='bookmark' title='Permanent Link: Email reader &#8211; Java Application'>Email reader &#8211; Java Application</a></li>
<li><a href='http://aplikasijavagratis.com/file-lock/' rel='bookmark' title='Permanent Link: File Lock'>File Lock</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://aplikasijavagratis.com/auto-sms-sender-free-java-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Email reader &#8211; Java Application</title>
		<link>http://aplikasijavagratis.com/email-reader-java-application/</link>
		<comments>http://aplikasijavagratis.com/email-reader-java-application/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 17:08:44 +0000</pubDate>
		<dc:creator>Aplikasi Java Gratis</dc:creator>
				<category><![CDATA[JAVA]]></category>
		<category><![CDATA[aplikasi java]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[java application]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[email client]]></category>
		<category><![CDATA[email reader]]></category>
		<category><![CDATA[java apps email]]></category>
		<category><![CDATA[java email reader]]></category>
		<category><![CDATA[phone email reader]]></category>

		<guid isPermaLink="false">http://aplikasijavagratis.com/?p=95</guid>
		<description><![CDATA[Email reader Java Email reader is java apps for reading your email by phone. It&#8217;s reading from your server email, so you need to set the POP3 to your phone. It easy as 1 2 3 , just put your server POP and , start downloading your email, and read it on your mobile phone [...]


Related posts:<ol><li><a href='http://aplikasijavagratis.com/pdf-document-reader/' rel='bookmark' title='Permanent Link: PDF Document Reader'>PDF Document Reader</a></li>
<li><a href='http://aplikasijavagratis.com/java-application-scalability/' rel='bookmark' title='Permanent Link: Java Application Scalability'>Java Application Scalability</a></li>
<li><a href='http://aplikasijavagratis.com/office-document-viewer/' rel='bookmark' title='Permanent Link: Office Document Viewer'>Office Document Viewer</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-96 aligncenter" title="email-reader" src="http://aplikasijavagratis.com/wp-content/uploads/2010/02/email-reader.jpg" alt="email reader" width="244" height="182" /></p>
<p style="text-align: center;">Email reader Java</p>
<p style="text-align: center;">Email reader is java apps for reading your email by phone. It&#8217;s reading from your server email, so you need to set the POP3 to your phone.</p>
<p style="text-align: center;">It easy as 1 2 3 , just put your server POP and , start downloading your email, and read it on your mobile phone</p>
<p style="text-align: center;">access from anywhere and anytime your email by using this java application.</p>
<p style="text-align: center;">Email reader support for any mobile phone on java engine.</p>
<p style="text-align: center;">You may download the file install here :<span id="more-95"></span> <a title="Download" href="http://aplikasijavagratis.com/download/email-reader.jar">email reader java</a></p>
<p style="text-align: center;">Save on your memory card / phone memory, then install it.</p>


<p>Related posts:<ol><li><a href='http://aplikasijavagratis.com/pdf-document-reader/' rel='bookmark' title='Permanent Link: PDF Document Reader'>PDF Document Reader</a></li>
<li><a href='http://aplikasijavagratis.com/java-application-scalability/' rel='bookmark' title='Permanent Link: Java Application Scalability'>Java Application Scalability</a></li>
<li><a href='http://aplikasijavagratis.com/office-document-viewer/' rel='bookmark' title='Permanent Link: Office Document Viewer'>Office Document Viewer</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://aplikasijavagratis.com/email-reader-java-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Face Warp &#8211; Funny Photo Maker</title>
		<link>http://aplikasijavagratis.com/face-warp-funny-photo-maker/</link>
		<comments>http://aplikasijavagratis.com/face-warp-funny-photo-maker/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 06:39:05 +0000</pubDate>
		<dc:creator>Aplikasi Java Gratis</dc:creator>
				<category><![CDATA[JAVA]]></category>
		<category><![CDATA[aplikasi java]]></category>
		<category><![CDATA[java application]]></category>
		<category><![CDATA[motorola]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[samsung]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[sony ericsson]]></category>
		<category><![CDATA[camera effect]]></category>
		<category><![CDATA[face maker]]></category>
		<category><![CDATA[free photo editor]]></category>
		<category><![CDATA[free photo software]]></category>
		<category><![CDATA[funny effect maker]]></category>
		<category><![CDATA[funny face effect]]></category>
		<category><![CDATA[funny face maker]]></category>
		<category><![CDATA[photo editor]]></category>
		<category><![CDATA[photo effect]]></category>
		<category><![CDATA[photo software]]></category>

		<guid isPermaLink="false">http://aplikasijavagratis.com/?p=71</guid>
		<description><![CDATA[Face Warp &#8211; Funny Photo maker This Java Application is software based on Java for make funny effects of your photo. Many funny effect available to choose from this aplikasi. But you only give the effect for photo taken directly from your camera. After take shot a photo, you may select from menu to give [...]


Related posts:<ol><li><a href='http://aplikasijavagratis.com/file-lock/' rel='bookmark' title='Permanent Link: File Lock'>File Lock</a></li>
<li><a href='http://aplikasijavagratis.com/pdf-document-reader/' rel='bookmark' title='Permanent Link: PDF Document Reader'>PDF Document Reader</a></li>
<li><a href='http://aplikasijavagratis.com/java-game-devil-may-cry/' rel='bookmark' title='Permanent Link: Java Game &#8211; Devil May Cry'>Java Game &#8211; Devil May Cry</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" title="FaceWarp" src="../wp-content/uploads/2010/01/FaceWarp.jpg" alt="Face Editor" width="156" height="195" /></p>
<p style="text-align: left;">Face Warp &#8211; Funny Photo maker</p>
<p style="text-align: left;">This Java Application is software based on Java for make funny effects of your photo. Many funny effect available to choose from this aplikasi.</p>
<p style="text-align: left;">But you only give the effect for photo taken directly from your camera. After take shot a photo, you may select from menu to give some funny effect.</p>
<p style="text-align: left;">Face warp is free application java for your mobile phone.</p>
<p>Download and Install , How to Install  on your Phone ?<span id="more-71"></span></p>
<ol>
<li>Save the JAR file for : <a title="DOWNLOAD" href="http://aplikasijavagratis.com/download/FaceWarp.jar">Face Warp</a> to your memory card or internal memory  of your phone<a title="DOWNLOAD" href="../download/opera-mini-4.jar"><br />
</a></li>
<li>Go to FILE MANAGER of your phone, then select the files you are   download, and choose INSTALL</li>
<li>Wait for Installation progress till FINISH.</li>
<li>Now you  may run the program from installed directory or shortcut   menu.</li>
</ol>


<p>Related posts:<ol><li><a href='http://aplikasijavagratis.com/file-lock/' rel='bookmark' title='Permanent Link: File Lock'>File Lock</a></li>
<li><a href='http://aplikasijavagratis.com/pdf-document-reader/' rel='bookmark' title='Permanent Link: PDF Document Reader'>PDF Document Reader</a></li>
<li><a href='http://aplikasijavagratis.com/java-game-devil-may-cry/' rel='bookmark' title='Permanent Link: Java Game &#8211; Devil May Cry'>Java Game &#8211; Devil May Cry</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://aplikasijavagratis.com/face-warp-funny-photo-maker/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>File Lock</title>
		<link>http://aplikasijavagratis.com/file-lock/</link>
		<comments>http://aplikasijavagratis.com/file-lock/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 12:34:39 +0000</pubDate>
		<dc:creator>Aplikasi Java Gratis</dc:creator>
				<category><![CDATA[JAVA]]></category>
		<category><![CDATA[aplikasi java]]></category>
		<category><![CDATA[document]]></category>
		<category><![CDATA[java application]]></category>
		<category><![CDATA[motorola]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[samsung]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[sony ericsson]]></category>
		<category><![CDATA[symbian]]></category>
		<category><![CDATA[download file lock]]></category>
		<category><![CDATA[download folder lock]]></category>
		<category><![CDATA[download lock file]]></category>
		<category><![CDATA[download lock folder]]></category>
		<category><![CDATA[file lock]]></category>
		<category><![CDATA[file lock memory]]></category>
		<category><![CDATA[file lock phone]]></category>
		<category><![CDATA[file password java]]></category>
		<category><![CDATA[folder lock]]></category>
		<category><![CDATA[free file lock]]></category>
		<category><![CDATA[free folder lock]]></category>
		<category><![CDATA[lock file]]></category>
		<category><![CDATA[lock file java]]></category>
		<category><![CDATA[lock folder]]></category>
		<category><![CDATA[password folder]]></category>

		<guid isPermaLink="false">http://aplikasijavagratis.com/?p=68</guid>
		<description><![CDATA[File Lock Java File Lock is a java application for lock your file or folder on file manager every cell phones. It&#8217;s allow you to set password on every time we want to access the file or folder. File lock must running on background, because it needs to still running even mobile phone is leave [...]


Related posts:<ol><li><a href='http://aplikasijavagratis.com/face-warp-funny-photo-maker/' rel='bookmark' title='Permanent Link: Face Warp &#8211; Funny Photo Maker'>Face Warp &#8211; Funny Photo Maker</a></li>
<li><a href='http://aplikasijavagratis.com/opera-mini-3-for-old-phone-models/' rel='bookmark' title='Permanent Link: Opera Mini 3 , for old phone models'>Opera Mini 3 , for old phone models</a></li>
<li><a href='http://aplikasijavagratis.com/notepad-for-java-free-java-apps/' rel='bookmark' title='Permanent Link: Notepad for Java &#8211; Free Java Apps'>Notepad for Java &#8211; Free Java Apps</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-69" title="file-lock" src="http://aplikasijavagratis.com/wp-content/uploads/2010/01/file-lock.jpg" alt="File Lock" width="243" height="323" />File Lock Java</p>
<p>File Lock is a java application for lock your file or folder on file manager every cell phones. It&#8217;s allow you to set password on every time we want to access the file or folder.</p>
<p>File lock must running on background, because it needs to still running even mobile phone is leave the application.</p>
<p>Lock file will safe your data on your memory card or internal memory of your phone, So don&#8217;t be worry again about your data being accessed by someone else.</p>
<p>Download and Install , How to Install  on your Phone ?</p>
<ol>
<li>Save the JAR file for : <a title="DOWNLOAD" href="http://aplikasijavagratis.com/download/file-lock.jar">File Lock</a> to your memory card or internal memory  of your phone<a title="DOWNLOAD" href="../download/opera-mini-4.jar"><br />
</a></li>
<li>Go to FILE MANAGER of your phone, then select the files you are  download, and choose INSTALL</li>
<li>Wait for Installation progress till FINISH.</li>
<li>Now you  may run the program from installed directory or shortcut  menu.</li>
</ol>


<p>Related posts:<ol><li><a href='http://aplikasijavagratis.com/face-warp-funny-photo-maker/' rel='bookmark' title='Permanent Link: Face Warp &#8211; Funny Photo Maker'>Face Warp &#8211; Funny Photo Maker</a></li>
<li><a href='http://aplikasijavagratis.com/opera-mini-3-for-old-phone-models/' rel='bookmark' title='Permanent Link: Opera Mini 3 , for old phone models'>Opera Mini 3 , for old phone models</a></li>
<li><a href='http://aplikasijavagratis.com/notepad-for-java-free-java-apps/' rel='bookmark' title='Permanent Link: Notepad for Java &#8211; Free Java Apps'>Notepad for Java &#8211; Free Java Apps</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://aplikasijavagratis.com/file-lock/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Mobile Gmaps &#8211; Mobile Maps</title>
		<link>http://aplikasijavagratis.com/mobile-gmaps-mobile-maps/</link>
		<comments>http://aplikasijavagratis.com/mobile-gmaps-mobile-maps/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 02:02:59 +0000</pubDate>
		<dc:creator>Aplikasi Java Gratis</dc:creator>
				<category><![CDATA[JAVA]]></category>
		<category><![CDATA[Touchscreen]]></category>
		<category><![CDATA[aplikasi java]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[download gps free]]></category>
		<category><![CDATA[download gps java]]></category>
		<category><![CDATA[free gps java]]></category>
		<category><![CDATA[free gps setting]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[gps software]]></category>
		<category><![CDATA[mgmaps]]></category>
		<category><![CDATA[mobile gmaps]]></category>
		<category><![CDATA[mobile gmpas]]></category>
		<category><![CDATA[mobile gps]]></category>
		<category><![CDATA[mobile maps]]></category>
		<category><![CDATA[wikimapia]]></category>

		<guid isPermaLink="false">http://aplikasijavagratis.com/?p=61</guid>
		<description><![CDATA[GMAPS Mobile Gmaps mobile aka mobile gmaps is software based on Java that show you a maps from google maps. This aplikasi java also know as MGMaps , help you to find a place or destination. It&#8217;s work like a GPS Mobile. Download and Install , How to Install on your Phone ? Save the [...]


Related posts:<ol><li><a href='http://aplikasijavagratis.com/file-lock/' rel='bookmark' title='Permanent Link: File Lock'>File Lock</a></li>
<li><a href='http://aplikasijavagratis.com/face-warp-funny-photo-maker/' rel='bookmark' title='Permanent Link: Face Warp &#8211; Funny Photo Maker'>Face Warp &#8211; Funny Photo Maker</a></li>
<li><a href='http://aplikasijavagratis.com/shmessenger-the-best-yahoo-messenger-mobile-client/' rel='bookmark' title='Permanent Link: shMessenger , the best Yahoo Messenger mobile client'>shMessenger , the best Yahoo Messenger mobile client</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-62 aligncenter" title="gmaps-mobile" src="http://aplikasijavagratis.com/wp-content/uploads/2010/01/gmaps-mobile.jpg" alt="Mobile Gmaps" width="212" height="250" />GMAPS Mobile</p>
<p>Gmaps mobile aka mobile gmaps is software based on Java that show you a maps from google maps.</p>
<p>This aplikasi java also know as MGMaps , help you to find a place or destination. It&#8217;s work like a GPS Mobile.</p>
<p>Download and Install , How to Install on your Phone ?<span id="more-61"></span></p>
<ol>
<li>Save the JAR file for : <a title="DOWNLOAD" href="http://aplikasijavagratis.com/download/mobile-gmaps.jar">Gmaps Mobile</a> to your memory card or internal memory  of your phone<a title="DOWNLOAD" href="../download/opera-mini-4.jar"><br />
</a></li>
<li>Go to FILE MANAGER of your phone, then select the files you are download, and choose INSTALL</li>
<li>Wait for Installation progress till FINISH.</li>
<li>Now you  may run the program from installed directory or shortcut menu.</li>
</ol>


<p>Related posts:<ol><li><a href='http://aplikasijavagratis.com/file-lock/' rel='bookmark' title='Permanent Link: File Lock'>File Lock</a></li>
<li><a href='http://aplikasijavagratis.com/face-warp-funny-photo-maker/' rel='bookmark' title='Permanent Link: Face Warp &#8211; Funny Photo Maker'>Face Warp &#8211; Funny Photo Maker</a></li>
<li><a href='http://aplikasijavagratis.com/shmessenger-the-best-yahoo-messenger-mobile-client/' rel='bookmark' title='Permanent Link: shMessenger , the best Yahoo Messenger mobile client'>shMessenger , the best Yahoo Messenger mobile client</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://aplikasijavagratis.com/mobile-gmaps-mobile-maps/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Opera Mini 3 , for old phone models</title>
		<link>http://aplikasijavagratis.com/opera-mini-3-for-old-phone-models/</link>
		<comments>http://aplikasijavagratis.com/opera-mini-3-for-old-phone-models/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 05:32:46 +0000</pubDate>
		<dc:creator>Aplikasi Java Gratis</dc:creator>
				<category><![CDATA[aplikasi java]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[java application]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[free operamini download]]></category>
		<category><![CDATA[get operamini]]></category>
		<category><![CDATA[opera browser download]]></category>
		<category><![CDATA[opera mini 3]]></category>
		<category><![CDATA[opera mini download]]></category>
		<category><![CDATA[operamini3]]></category>

		<guid isPermaLink="false">http://www.aplikasijavagratis.com/?p=50</guid>
		<description><![CDATA[OPERA MINI 3 Anybody who has an old version of mobile phone, usually when use Operamini your phone will get some little slow access. This Operamini 3 is your solution for that problem. Opera mini 3 has more tiny resource for making it&#8217;s running fast on your phone. Download and Install , How to Install [...]


Related posts:<ol><li><a href='http://aplikasijavagratis.com/opera-mini-4/' rel='bookmark' title='Permanent Link: Opera Mini 4'>Opera Mini 4</a></li>
<li><a href='http://aplikasijavagratis.com/opera-mini-5-beta/' rel='bookmark' title='Permanent Link: Opera Mini 5 Beta'>Opera Mini 5 Beta</a></li>
<li><a href='http://aplikasijavagratis.com/file-lock/' rel='bookmark' title='Permanent Link: File Lock'>File Lock</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-51 aligncenter" title="opera-mini-3" src="http://www.aplikasijavagratis.com/wp-content/uploads/2010/01/opera-mini-3.jpg" alt="opera mini 3" width="200" height="268" />OPERA MINI 3</p>
<p>Anybody who has an old version of mobile phone, usually when use Operamini your phone will get some little slow access.</p>
<p>This Operamini 3 is your solution for that problem. Opera mini 3 has more tiny resource for making it&#8217;s running fast on your phone.</p>
<p>Download and Install , How to Install on your Phone ?<span id="more-50"></span></p>
<ol>
<li>Save the JAR file for : <a title="DOWNLOAD" href="http://aplikasijavagratis.com/download/opera-mini-3.jar">Opera Mini v.3</a> to your memory card or internal memory  of your phone</li>
<li>Go to FILE MANAGER of your phone, then select the files you are download, and choose INSTALL</li>
<li>Wait for Installation progress till FINISH.</li>
<li>Now you  may run the program from installed directory or shortcut menu.</li>
</ol>


<p>Related posts:<ol><li><a href='http://aplikasijavagratis.com/opera-mini-4/' rel='bookmark' title='Permanent Link: Opera Mini 4'>Opera Mini 4</a></li>
<li><a href='http://aplikasijavagratis.com/opera-mini-5-beta/' rel='bookmark' title='Permanent Link: Opera Mini 5 Beta'>Opera Mini 5 Beta</a></li>
<li><a href='http://aplikasijavagratis.com/file-lock/' rel='bookmark' title='Permanent Link: File Lock'>File Lock</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://aplikasijavagratis.com/opera-mini-3-for-old-phone-models/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PDF Document Reader</title>
		<link>http://aplikasijavagratis.com/pdf-document-reader/</link>
		<comments>http://aplikasijavagratis.com/pdf-document-reader/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 04:00:05 +0000</pubDate>
		<dc:creator>Aplikasi Java Gratis</dc:creator>
				<category><![CDATA[aplikasi java]]></category>
		<category><![CDATA[document]]></category>
		<category><![CDATA[java application]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[pdf document reader]]></category>
		<category><![CDATA[pdf editor java]]></category>
		<category><![CDATA[pdf java reader]]></category>
		<category><![CDATA[pdf java viewer]]></category>
		<category><![CDATA[pdf reader]]></category>
		<category><![CDATA[pdf viewer]]></category>

		<guid isPermaLink="false">http://www.aplikasijavagratis.com/?p=36</guid>
		<description><![CDATA[PDF Document Reader also important java application for you mobile device. Like last post about document reader, PDF reader also give you view of pdf document by phone. Easily open adobe document (PDF) , and read it on your phone. This is free to download, most favorit aplikasi java download. Note : for a big [...]


Related posts:<ol><li><a href='http://aplikasijavagratis.com/office-document-viewer/' rel='bookmark' title='Permanent Link: Office Document Viewer'>Office Document Viewer</a></li>
<li><a href='http://aplikasijavagratis.com/email-reader-java-application/' rel='bookmark' title='Permanent Link: Email reader &#8211; Java Application'>Email reader &#8211; Java Application</a></li>
<li><a href='http://aplikasijavagratis.com/file-lock/' rel='bookmark' title='Permanent Link: File Lock'>File Lock</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-37 aligncenter" title="pdf_reader" src="http://www.aplikasijavagratis.com/wp-content/uploads/2010/01/pdf_reader.jpg" alt="pdf document reader" width="200" height="245" /></p>
<p>PDF Document Reader also important java application for you mobile device. Like last post about <a href="http://www.aplikasijavagratis.com/office-document-viewer/" target="_self">document reader</a>, PDF reader also give you view of pdf document by phone.</p>
<p>Easily open adobe document (PDF) , and read it on your phone. This is free to download, most favorit aplikasi java download.</p>
<p>Note : for a big pdf file, better you are not open it via phone. It will be long time waiting <img src='http://aplikasijavagratis.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Download and Install , How to Install on your Phone ?<span id="more-36"></span></p>
<ol>
<li>Save the JAR file for : <a title="DOWNLOAD" href="http://aplikasijavagratis.com/download/pdf_reader.jar">PDF Document Reader</a> to your memory card or internal memory  of your phone<a title="DOWNLOAD" href="http://aplikasijavagratis.com/download/opera-mini-4.jar"><br />
</a></li>
<li>Go to FILE MANAGER of your phone, then select the files you are download, and choose INSTALL</li>
<li>Wait for Installation progress till FINISH.</li>
<li>Now you  may run the program from installed directory or shortcut menu.</li>
</ol>


<p>Related posts:<ol><li><a href='http://aplikasijavagratis.com/office-document-viewer/' rel='bookmark' title='Permanent Link: Office Document Viewer'>Office Document Viewer</a></li>
<li><a href='http://aplikasijavagratis.com/email-reader-java-application/' rel='bookmark' title='Permanent Link: Email reader &#8211; Java Application'>Email reader &#8211; Java Application</a></li>
<li><a href='http://aplikasijavagratis.com/file-lock/' rel='bookmark' title='Permanent Link: File Lock'>File Lock</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://aplikasijavagratis.com/pdf-document-reader/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
