<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>netbeans-65 &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/netbeans-65/</link>
	<description>Feed of posts on WordPress.com tagged "netbeans-65"</description>
	<pubDate>Sat, 02 Jan 2010 04:18:26 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Maven Projects In NetBeans 6.5 On OSX / Updating Maven On OSX]]></title>
<link>http://devblog.point2.com/2009/05/01/maven-projects-in-netbeans-65-on-osx-updating-maven-on-osx/</link>
<pubDate>Fri, 01 May 2009 20:44:38 +0000</pubDate>
<dc:creator>Damien Gabrielson</dc:creator>
<guid>http://devblog.point2.com/2009/05/01/maven-projects-in-netbeans-65-on-osx-updating-maven-on-osx/</guid>
<description><![CDATA[Since my last post, Defaulting To JDK 1.6 In NetBeans 6.5 On OSX, has enjoyed some popularity I deci]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Since my last post, <a href="http://devblog.point2.com/2009/02/17/defaulting-to-jdk-16-in-netbeans-65-on-osx/">Defaulting To JDK 1.6 In NetBeans 6.5 On OSX</a>, has enjoyed some popularity I decided to keep running with the NetBeans 6.5/OS X theme. <a href="http://www.netbeans.org/">NetBeans</a> is a great, free IDE that supports more types of projects than the average developer would likely ever need. One of the most useful project types that NetBeans supports is <a href="http://maven.apache.org/">Maven</a> projects. If you are new to Maven, <a href="http://maven.apache.org/what-is-maven.html">here</a> is an intro to peak your interest.</p>
<p>For developers who have been using Maven for a while, you likely will be creating your projects (.pom files specifically) from a text editor but this can be a little overwhelming for those new to Maven or those who would rather simply spend their time writing code instead. NetBeans 6.5 makes it incredibly easy to create a Maven project in a matter of seconds. </p>
<p>First, go to the &#8220;File&#8221; menu and choose &#8220;New Project&#8221;.<br />
<a href="http://point2blog.wordpress.com/files/2009/05/picture-0.png"><img src="http://point2blog.wordpress.com/files/2009/05/picture-0.png?w=300" alt="New Project" title="New Project" width="300" height="144" class="alignnone size-medium wp-image-404" /></a><br />
Under &#8220;Categories&#8221;, choose &#8220;Maven&#8221; and in&#8221;Projects&#8221;, choose &#8220;Maven Project&#8221; and click &#8220;Next&#8221;.<br />
<a href="http://point2blog.wordpress.com/files/2009/05/picture-1.png"><img src="http://point2blog.wordpress.com/files/2009/05/picture-1.png?w=300" alt="Choose Project" title="Choose Project" width="300" height="216" class="alignnone size-medium wp-image-405" /></a><br />
The &#8220;Archetype&#8221; window should open next, select &#8220;Maven Quickstart Archetype&#8221; and click &#8220;Next&#8221;.<br />
<a href="http://point2blog.wordpress.com/files/2009/05/picture-2.png"><img src="http://point2blog.wordpress.com/files/2009/05/picture-2.png?w=300" alt="Project Archetype" title="Project Archetype" width="300" height="216" class="alignnone size-medium wp-image-406" /></a><br />
The &#8220;Name and Location&#8221; window will open allowing you to give specifics to your project. You can customize this as you see fit but for the purposes of this example I will leave the default settings. Click &#8220;Finish&#8221; and your project will start to build.<br />
<a href="http://point2blog.wordpress.com/files/2009/05/picture-3.png"><img src="http://point2blog.wordpress.com/files/2009/05/picture-3.png?w=300" alt="Project Name &#38; Location" title="Project Name &#38; Location" width="300" height="179" class="alignnone size-medium wp-image-407" /></a><br />
If you are running OS X 10.5.6, as I am, you will likely see the following error:<br />
<code><br />
------------------------------------------------------------------------<br />
[ERROR]BUILD ERROR<br />
------------------------------------------------------------------------<br />
Error resolving version for 'org.apache.maven.plugins:maven-archetype-plugin': <strong>Plugin requires Maven version 2.0.7</strong><br />
------------------------------------------------------------------------<br />
For more information, run Maven with the -e switch<br />
</code></p>
<p>The reason for this is that OS X 10.5 shipped with Maven 2.0.6 pre-installed but Apple has never pushed any updates to it. According to the Apache archives, Maven 2.0.6 was released in April 2007 but it is kind of annoying that they didn&#8217;t realize that Maven projects would not work by default on OS X before they released NetBeans 6.5. Luckily, it is very easy to update Maven to the latest version if you don&#8217;t mind using the terminal and the <code>sudo</code> command.</p>
<ol>
<li><a href="http://maven.apache.org/download.html">Download</a> the zip with binaries for whichever Maven version you would like to install. At time of writing, the most recent version is 2.1.0, <a href="http://www.apache.org/dyn/closer.cgi/maven/binaries/apache-maven-2.1.0-bin.zip">http://www.apache.org/dyn/closer.cgi/maven/binaries/apache-maven-2.1.0-bin.zip</a>.</li>
<li>Once the file is downloaded, you can extract the archive and you should end up with a directory named something like &#8220;apache-maven-2.1.0&#8243;. Open a Terminal window and <code>cd /usr/share</code></li>
<li>Let&#8217;s move the current Maven directory to a backup folder in case we ever want to revert. In the terminal you opened in the last step, type <code>sudo mv maven maven-2.0.6</code>. This will ask you for your password and then move the &#8220;maven&#8221; directory to a new directory called &#8220;maven-2.0.6&#8243;, assuming your user account has sufficient permissions.</li>
<li>Now let&#8217;s put the new version in place so that NetBeans will start using it. To do so, we need to copy the directory we extracted from the zip file. Once again, in the Terminal window you have open, type <code>sudo cp -R /Users/dgabrielson/Desktop/apache-maven-2.1.0 maven</code>. Keep in mind that the path to the extracted &#8220;apache-maven-2.1.0&#8243; directory will have to be changed to the appropriate path on your system.</li>
<li>Maven should now be upgraded! To confirm, in your Terminal window, type <code>mvn -version</code> and you should see some output like <code>Apache Maven 2.1.0 (r755702; 2009-03-18 13:10:27-0600)</code>.</li>
</ol>
<p>Now if you try to build again, you should get a successful build log ending with:<br />
<code><br />
------------------------------------------------------------------------<br />
BUILD SUCCESSFUL<br />
------------------------------------------------------------------------<br />
</code></p>
<p>Enjoy your new Maven build and get coding!</p>
<p>By: <a href="http://devblog.point2.com/author/dgp2/">Damien Gabrielson</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[NetBeans 6.7, el próximo release del NetBeans IDE: Tip 1 (Ergonomic)]]></title>
<link>http://vramirez.wordpress.com/2009/04/11/netbeans-67-tip-1/</link>
<pubDate>Sat, 11 Apr 2009 20:29:56 +0000</pubDate>
<dc:creator>vramirez</dc:creator>
<guid>http://vramirez.wordpress.com/2009/04/11/netbeans-67-tip-1/</guid>
<description><![CDATA[Luego del exitoso lanzamiento por parte de NetBeans.org de la versión 6.5 y 6.5.1 (versión mejorada ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Luego del exitoso lanzamiento por parte de <a href="http://www.NetBeans.org" target="_blank">NetBeans.org</a> de la versión 6.5 y <a href="http://www.netbeans.org/servlets/NewsItemView?newsItemID=1358" target="_blank">6.5.1</a> (versión mejorada del 6.5) de su IDE, vino el anuncio lanzamiento de la versión 6.7 del mismo. Esta versión aún no alcanza su etapa final, sin embargo, esta llena de cambios y mejoras. Hoy hablaré de una de ellas, disponible a partir de Netbeans 6.7 Milestone 2; defininda por el mismo NetBeans Team como &#8220;Ergonomic&#8221;, ya que permite al IDE acomodarse a las necesidades del desarrollador, cargando solamente los módulos que el/ella necesite.</p>
<p>Cuando por ejemplo instalamos la versión &#8220;All&#8221; o completa del IDE y vamos a revisar los plugins y y módulos disponibles (Tools-&#62;Plugins-&#62;Installed), veremos (y sin motivo para alarmarnos&#8230;) que muchos de los módulos del IDE están desactivados, y prácticamente estan activos los que pertenecen a la parte base del IDE, como lo muestra la imagen:</p>
<div id="attachment_170" class="wp-caption aligncenter" style="width: 887px"><img class="size-full wp-image-170" title="ergonomics2" src="http://vramirez.wordpress.com/files/2009/04/ergonomics2.png" alt="Lista de plugins para NetBeans 6.7M3" width="877" height="560" /><p class="wp-caption-text">Lista de plugins para NetBeans 6.7M3</p></div>
<p>Los módulos no activos, se activarán según lo requiera el usuario. Por ejemplo, si vamos al wizard para crear una nueva aplicación web, cuando intentamos crear dicho proyecto, en la segunda ventana del asistente, aparecerá un mensaje como este:</p>
<div id="attachment_169" class="wp-caption aligncenter" style="width: 1034px"><img class="size-full wp-image-169" title="ergonomics" src="http://vramirez.wordpress.com/files/2009/04/ergonomics.png" alt="Activandose..." width="1024" height="565" /><p class="wp-caption-text">Activándose...</p></div>
<p>Esta característica de acivar módulos por demanda, un poco extraña, inicialmente, busca evidentemente aliviar un poco la carga de trabajo del IDE, pues solo trabaja con las clases que necesita, evitando utilizar carcaterísticas que quizás nunca utilicemos (C++, por ejemplo&#8230;).</p>
<p>Cabe aclarar que una vez estos módulos se activan no se vuelven a desactivar, a menos que el usuario así lo indique. Una vez más gracias a todos por leer mis posts, hace un año y unos pocos días que me mudé a wordpress y van casi 20K visitas, simplemente gracias!!! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Nota: para aquellos que se estén preguntando por qué saltaron de 6.5 a 6.7, la razón es tan sencilla como curiosa; no querían que se asociara al IDE con el número 6.6&#8230;6, jejej, veanlo <a href="http://www.netbeans.org/servlets/NewsItemView?newsItemID=1346" target="_blank">aquí</a> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Defaulting To JDK 1.6 In NetBeans 6.5 On OSX]]></title>
<link>http://devblog.point2.com/2009/02/17/defaulting-to-jdk-16-in-netbeans-65-on-osx/</link>
<pubDate>Tue, 17 Feb 2009 15:18:09 +0000</pubDate>
<dc:creator>Damien Gabrielson</dc:creator>
<guid>http://devblog.point2.com/2009/02/17/defaulting-to-jdk-16-in-netbeans-65-on-osx/</guid>
<description><![CDATA[We try to stay current with our technologies at Point2. An example of this is using the most recent ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>We try to stay current with our technologies at Point2. An example of this is using the most recent Java platform, Java 6 (JDK 1.6) and modern IDEs such as NetBeans 6.5. However, staying up to date with technology is not always as simple as it could be. Java 6 was released in December 2006 and NetBeans 6.5 was released almost 2 years later in November 2008 and yet it still wants to use Java 5 (JDK 1.5) as the default Java Platform, regardless of what you have set in the OSX Java preferences. Here is how you can set NetBeans 6.5 to use JDK 1.6 by default.</p>
<ul>
<li>Ensure that JDK 1.6 and NetBeans 6.5 are installed</li>
<li>Locate the NetBeans config file, typically located at &#8220;/Applications/NetBeans/NetBeans 6.5.app/Contents/Resources/NetBeans/etc/netbeans.conf&#8221; and open the file in your favourite editor</li>
<li>Set the &#8220;netbeans_jdkhome&#8221; parameter to the JDK 1.6 home directory (ie. netbeans_jdkhome=<br />
/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home)</li>
<li>In NetBeans, right click on the project in the project window and select &#8220;Properties&#8221;</li>
<li>Ensure the &#8220;Source/Binary Format&#8221; is set to &#8220;1.6&#8243;<br />
<a href="http://i43.tinypic.com/oh60ep.png" target="_blank"><img src="http://i44.tinypic.com/2ptueeu.png" border="0" alt="" /></a></li>
<li>Click on &#8220;Tools&#8221; on the toolbar and select &#8220;Java Platforms&#8221;</li>
<li>Under &#8220;J2SE&#8221; the default platform should now be &#8220;JDK 1.6&#8243;<br />
<a href="http://i41.tinypic.com/2wp7bxi.png" target="_blank"><img src="http://i43.tinypic.com/v66qzn.png" border="0" alt="" /></a></li>
</ul>
<p>By: <a href="http://devblog.point2.com/author/dgp2/" target="_blank">Damien Gabrielson</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[After effects(+) of NetBeans Demo]]></title>
<link>http://rohendra.wordpress.com/2009/02/04/after-effects-of-netbeans-demo/</link>
<pubDate>Tue, 03 Feb 2009 21:36:48 +0000</pubDate>
<dc:creator>Rohendra Singh</dc:creator>
<guid>http://rohendra.wordpress.com/2009/02/04/after-effects-of-netbeans-demo/</guid>
<description><![CDATA[While preparing my talk on NetBeans 6.5 and practicing demo, I came across many useful and exciting ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>While preparing my talk on NetBeans 6.5 and practicing demo, I came across many useful and exciting features. Even though I have been using NetBeans for more than 1 ½ years, I was not aware of all these advanced features. Till now the main purpose of using NetBeans was its Swing GUI builder. Since my school days I have been fascinated by cool GUIs. I wondered how can someone build such nice looking interfaces, since I used to program in BASIC language.</p>
<p style="margin-bottom:0;"><a href="http://www.netbeans.org"><img class="alignnone size-full wp-image-21" title="The only IDE you need!" src="http://rohendra.wordpress.com/files/2009/02/windowslivewriter_netbeansdatabaseexplorergetssmarterwithe_1ea_netbeans-65.png" alt="The only IDE you need!" width="450" height="283" /></a></p>
<p style="margin-bottom:0;">I think I learned more from this demo than my audience. It is always the same case whenever a teacher actually teaches. He has to be prepared for any question during his talk. Same was the case with me, which resulted in a deep understanding of NetBeans and its usage.</p>
<p style="margin-bottom:0;">I would like to write on some of the cool features of NetBeans. Profiler is an Integrated Performance Profiling tool which helps us to analyze the performance of our code. To be frank, till now I have never given it much importance. But this is one of the main reason why we use one software over another. So if you really want your software to be used, better pay attention to the performance factor.</p>
<p style="margin-bottom:0;">Next on the list is the Mobile Development. Now it is as easy as dragging a few frames, buttons and some code. Thats it! You are ready to deploy your first mobile application. Similarly, it has a Visual Web Development tool which makes creating web application a fun  thing to do.</p>
<p style="margin-bottom:0;">It has a very advanced editor with almost all modern editing features like live parsing, refactoring, smart code completion, insert code and many more.</p>
<p style="margin-bottom:0;">Regarding the latest version of NetBeans, there have been considerable improvements in performance especially the startup is 40% faster. Support for PHP, Javascript, MySQL, Groovy and Grails have been added.<span style="color:#000000;"><span style="text-decoration:none;"><span style="font-family:Times New Roman,serif;"><span style="font-size:small;"><span style="font-style:normal;"></span></span></span></span></span></p>
<p style="margin-bottom:0;">NetBeans have been awarded the title &#8220;Product of the Year&#8221; by developer.com. If you want to know more about the features of NetBeans, <a href="http://www.netbeans.org" target="_blank">Netbeans.org</a> is the best place to look.<span style="color:#000000;"><span style="text-decoration:none;"><span style="font-family:Times New Roman,serif;"><span style="font-size:small;"><span style="font-style:normal;"></span></span></span></span></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[NetBeans 6.5 Demo]]></title>
<link>http://rohendra.wordpress.com/2009/02/03/netbeans-65-demo/</link>
<pubDate>Tue, 03 Feb 2009 15:50:20 +0000</pubDate>
<dc:creator>Rohendra Singh</dc:creator>
<guid>http://rohendra.wordpress.com/2009/02/03/netbeans-65-demo/</guid>
<description><![CDATA[A demo on new and cool features of recently released NetBeans 6.5 was held on Jan 20. It was of 2 hr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>A demo on new and cool features of recently released NetBeans 6.5  was held on Jan 20. It was of 2 hrs duration from 3 to 5 pm at CB -16 in our Computer Department.<br />
As expected 71 students attended this demo. Most of them were members of Sun Club(OSUG, Pantnagar).<br />
It all started with a simple question, “What is NetBeans? The most popular answer was that it is an IDE                 used for Java programming. Well, they were correct but only 33% because apart from being a powerful IDE, it is also a platform for developing applications and a community too.</p>
<p><a href="http://osum.sun.com/photo/album/show?id=2181626:Album:394356"><img class="alignnone size-full wp-image-15" title="NetBeans Demo" src="http://rohendra.wordpress.com/files/2009/02/collage1.jpg" alt="NetBeans Demo" width="450" height="450" /></a><br />
For next few minutes, I spoke about the interesting history of NetBeans. Students were excited  to learn how a final year project turned into such an amazing software. It followed with the overview of  its features and the ability to run on any OS with JRE. Students were shocked when they saw the slide showing various technologies supported by NetBeans. A student who have heard of the most of these technologies received a goody.</p>
<p>Then came the real demo, I created  a database CRUD application showing how easy it is to create database applications using NetBeans. With this project I also showed how easy it is to develop GUIs with Swing GUI builder(formerly know as Matisse). It was accompanied by demo on advanced editing features.</p>
<p>All the students received a DVD containing NetBeans 6.1, JDK, and other resources. At the end I asked some random questions from the talk and distributed goodies(Pens and Key Chains). Last but not the least, I encouraged them to join NetBeans.org community and explore it.<br />
The demo was successful.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Crear JAR's con NetBeans 6.5]]></title>
<link>http://theworldofrafex.wordpress.com/2009/01/27/crear-jars-con-netbeans-65/</link>
<pubDate>Tue, 27 Jan 2009 18:29:44 +0000</pubDate>
<dc:creator>rafex</dc:creator>
<guid>http://theworldofrafex.wordpress.com/2009/01/27/crear-jars-con-netbeans-65/</guid>
<description><![CDATA[Bueno he notado que algunos buscan como Hacer que sus aplicaciones Java sean ejecutadas por el usuar]]></description>
<content:encoded><![CDATA[Bueno he notado que algunos buscan como Hacer que sus aplicaciones Java sean ejecutadas por el usuar]]></content:encoded>
</item>
<item>
<title><![CDATA[How to Install Netbeans 6.5 on OpenSolaris]]></title>
<link>http://javadude.wordpress.com/2009/01/24/how-to-install-netbeans-65-on-opensolaris/</link>
<pubDate>Sat, 24 Jan 2009 10:01:16 +0000</pubDate>
<dc:creator>devdude</dc:creator>
<guid>http://javadude.wordpress.com/2009/01/24/how-to-install-netbeans-65-on-opensolaris/</guid>
<description><![CDATA[If you are spoilt with double-click Installers and hardly ever opened a DOS-Box, you might be challe]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>If you are spoilt with double-click Installers and hardly ever opened a DOS-Box, you might be challenged getting some applications up and running in Linux, Unix or OpenSolaris. The Package Manager offers you quite a huge selection of applications and tools that you just select and install, but some stuff requires some manual steps, like Netbeans.</p>
<p><strong>Prerequisites</strong><br />
- Downloaded Netbeans (netbeans-6.5-ml-solaris-x86.sh, <a href="http://www.netbeans.org/downloads/index.html" target="_blank">link here</a>)<br />
- Installed JDK (<a href="http://java.sun.com/javase/downloads/index.jsp" target="_blank">link here</a>)</p>
<p><strong>Create JAVA_HOME and PATH</strong><br />
- export JAVA_HOME=/{your jdkpath}<br />
- export PATH=$PATH:$JAVA_HOME/bin:$JAVA_HOME/jre/bin<br />
- Add too add to /etc/profile</p>
<p><strong>Installing Netbeans</strong><br />
- Open terminal session as normal user<br />
- Navigate to the folder with the netbeans-6.5-ml-solaris-x86.sh file<br />
- Make it executable <em><span style="color:#008000;">chmod +x netbeans-6.5-ml-solaris-x86.sh</span></em><br />
- <em><span style="color:#008000;">xhost +</span></em><br />
- Change to root user <span style="color:#008000;"><em>su &#8211; </em></span><br />
- <em><span style="color:#008000;">export DISPLAY=:0.0</span></em><br />
- Execute Installer<span style="color:#008000;"><em> ./netbeans-6.5-ml-solaris-x86.sh</em></span><br />
- Rest self-explaining by the standard interactive GUI installer.</p>
<p>I also recommend to visit the plugins to get the latest updates.</p>
<p>Good Luck</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Generando Eventos en NetBeans y creando una Calculadora]]></title>
<link>http://theworldofrafex.wordpress.com/2009/01/22/generando-eventos-en-netbeans-y-creando-una-calculadora/</link>
<pubDate>Fri, 23 Jan 2009 01:25:33 +0000</pubDate>
<dc:creator>rafex</dc:creator>
<guid>http://theworldofrafex.wordpress.com/2009/01/22/generando-eventos-en-netbeans-y-creando-una-calculadora/</guid>
<description><![CDATA[Vamos a explicar como generar eventos usando el IDE de programación NetBeans 6.5, es algo muy simple]]></description>
<content:encoded><![CDATA[Vamos a explicar como generar eventos usando el IDE de programación NetBeans 6.5, es algo muy simple]]></content:encoded>
</item>
<item>
<title><![CDATA[Haciendo Conexión de una Base de Datos (MySQL) con NetBeans 6.5]]></title>
<link>http://theworldofrafex.wordpress.com/2009/01/16/haciendo-conexion-de-una-base-de-datos-mysql-con-netbeans-65/</link>
<pubDate>Sat, 17 Jan 2009 05:56:20 +0000</pubDate>
<dc:creator>rafex</dc:creator>
<guid>http://theworldofrafex.wordpress.com/2009/01/16/haciendo-conexion-de-una-base-de-datos-mysql-con-netbeans-65/</guid>
<description><![CDATA[Bueno la creación de este post, es que amigos cercanos deseaban saber como se hacia esto así que pro]]></description>
<content:encoded><![CDATA[Bueno la creación de este post, es que amigos cercanos deseaban saber como se hacia esto así que pro]]></content:encoded>
</item>
<item>
<title><![CDATA[Instalación conjunta de JDK 6 update 11 + Netbeans 6.5 (Linux)]]></title>
<link>http://jtagua.wordpress.com/2008/12/21/instalacion-de-jdk-6-update-11-netbeans-65/</link>
<pubDate>Sun, 21 Dec 2008 07:16:42 +0000</pubDate>
<dc:creator>Jtagua</dc:creator>
<guid>http://jtagua.wordpress.com/2008/12/21/instalacion-de-jdk-6-update-11-netbeans-65/</guid>
<description><![CDATA[Instalaremos ahora JDK 6 update 11 y Netbeans 6.5 de forma conjunta en Linux Debian. Descarga: Lo pr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Instalaremos ahora JDK 6 update 11 y Netbeans 6.5 de forma conjunta en Linux Debian.</p>
<p><strong>Descarga:<br />
</strong><br />
Lo primero que tenemos que hacer es visitar la página de Sun Microsystem siguiente</p>
<p><a href="http://java.sun.com/javase/downloads/index.jsp"><span style="color:#de7008;">http://java.sun.com/javase/downloads/index.jsp</span></a></p>
<p><a href="http://4.bp.blogspot.com/_SPXoJ8NMtts/SUzwwKaB3jI/AAAAAAAAAYo/CWy5vvFKsog/s1600-h/pan0.jpg"><span style="color:#de7008;"><img style="display:block;width:386px;cursor:hand;height:350px;text-align:center;margin:0 auto 10px;" src="http://4.bp.blogspot.com/_SPXoJ8NMtts/SUzwwKaB3jI/AAAAAAAAAYo/CWy5vvFKsog/s400/pan0.jpg" border="0" alt="" /></span></a><br />
en esta página seleccionamos <strong>JDK 6 Update 11 with NetBeans 6.5</strong>, y aparece esta otra página</p>
<div><a href="http://1.bp.blogspot.com/_SPXoJ8NMtts/SUzwqpC0yiI/AAAAAAAAAYg/MvmY1AAXH0M/s1600-h/pan0a.jpg"><img style="display:block;width:400px;cursor:hand;height:300px;text-align:center;margin:0 auto 10px;" src="http://1.bp.blogspot.com/_SPXoJ8NMtts/SUzwqpC0yiI/AAAAAAAAAYg/MvmY1AAXH0M/s400/pan0a.jpg" border="0" alt="" /></a></div>
<div>En esta, seleccionamos <strong>Java SE Development Kit 6u11 and NetBeans IDE 6.5 Bundle Downloads</strong>, y aparecerá</div>
<div><a href="http://4.bp.blogspot.com/_SPXoJ8NMtts/SUzwjloXYhI/AAAAAAAAAYY/A_XvONtQuXk/s1600-h/pan0b.jpg"><img style="display:block;width:400px;cursor:hand;height:300px;text-align:center;margin:0 auto 10px;" src="http://4.bp.blogspot.com/_SPXoJ8NMtts/SUzwjloXYhI/AAAAAAAAAYY/A_XvONtQuXk/s400/pan0b.jpg" border="0" alt="" /></a><br />
Seleccionamos la plataforma (Linux), Multilenguaje y aceptamos las condiciones de la licencia. Después de indicar continuar, aparece finalmente:</div>
<div>
<div><a href="http://4.bp.blogspot.com/_SPXoJ8NMtts/SUzwfNXNAAI/AAAAAAAAAYQ/TUeKhA-PBPg/s1600-h/pan0c.jpg"><img style="display:block;width:400px;cursor:hand;height:300px;text-align:center;margin:0 auto 10px;" src="http://4.bp.blogspot.com/_SPXoJ8NMtts/SUzwfNXNAAI/AAAAAAAAAYQ/TUeKhA-PBPg/s400/pan0c.jpg" border="0" alt="" /></a><br />
En esta pantalla hacemos click en el enlace <a href="http://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_US/-/USD/VerifyItem-Start/jdk-6u11-nb-6_5-linux-ml.sh?BundledLineItemUUID=vH1IBe.oyPwAAAEeyuU8elST&#38;OrderID=JLJIBe.oRqYAAAEeuuU8elST&#38;ProductID=1QZIBe.pMsQAAAEdoipT8dp5&#38;FileName=/jdk-6u11-nb-6_5-linux-ml.sh"><span style="color:#de7008;">jdk-6u11-nb-6_5-linux-ml.sh</span></a> , y a partir de ese momento comenzará a descargarse dicho archivo.</div>
<div><strong>Instalacion:</strong></div>
<div>Una vez descargado, pasamos a la consola de comandos con atributos de administrador y ejecutamos desde la carpeta de descarga donde se encuentra el archivo descargado</div>
<div><strong></strong></div>
<div style="text-align:center;"><strong>chmod +x jdk-6u11-nb-6_5-linux-ml.sh</strong></div>
<div>y finalmente</div>
<div><strong></strong></div>
<div style="text-align:center;"><strong>./jdk-6u11-nb-6_5-linux-ml.sh </strong></div>
<div>con esto comienza la instalación</div>
<div>
<div><a href="http://3.bp.blogspot.com/_SPXoJ8NMtts/SUzwaXnL0iI/AAAAAAAAAYI/NYezjZ_Ct6s/s1600-h/pan1.jpg"><img style="display:block;width:400px;cursor:hand;height:270px;text-align:center;margin:0 auto 10px;" src="http://3.bp.blogspot.com/_SPXoJ8NMtts/SUzwaXnL0iI/AAAAAAAAAYI/NYezjZ_Ct6s/s400/pan1.jpg" border="0" alt="" /></a> Hacemos Next,</div>
<div><a href="http://2.bp.blogspot.com/_SPXoJ8NMtts/SUzwWdzWzHI/AAAAAAAAAYA/Wnf54xNbN74/s1600-h/pan2.jpg"><img style="display:block;width:400px;cursor:hand;height:269px;text-align:center;margin:0 auto 10px;" src="http://2.bp.blogspot.com/_SPXoJ8NMtts/SUzwWdzWzHI/AAAAAAAAAYA/Wnf54xNbN74/s400/pan2.jpg" border="0" alt="" /></a>Aceptamos los términos de la licencia y volvemos a hacer Next, y comenzará la instslación del jdk necesario para poder ejecutar Netbeans</div>
<div><a href="http://2.bp.blogspot.com/_SPXoJ8NMtts/SUzwR9eIOyI/AAAAAAAAAX4/xx_msV2Jic0/s1600-h/pan3.jpg"><img style="display:block;width:400px;cursor:hand;height:269px;text-align:center;margin:0 auto 10px;" src="http://2.bp.blogspot.com/_SPXoJ8NMtts/SUzwR9eIOyI/AAAAAAAAAX4/xx_msV2Jic0/s400/pan3.jpg" border="0" alt="" /></a>En la pantalla anterior, aparece el directorio por defecto donde se instalará el JDK, es decir, /usr/local/jdk1.6.0_11, hacemos Next para continuar,</div>
<div><a href="http://1.bp.blogspot.com/_SPXoJ8NMtts/SUzwKzZLAOI/AAAAAAAAAXw/TmInePiL6Jg/s1600-h/pan4.jpg"><img style="display:block;width:400px;cursor:hand;height:269px;text-align:center;margin:0 auto 10px;" src="http://1.bp.blogspot.com/_SPXoJ8NMtts/SUzwKzZLAOI/AAAAAAAAAXw/TmInePiL6Jg/s400/pan4.jpg" border="0" alt="" /></a>Ahora aparece el directorio por defecto donde se instalará Netbeans, hacemos Next para continuar</div>
<div><a href="http://2.bp.blogspot.com/_SPXoJ8NMtts/SUzwF3jgVqI/AAAAAAAAAXo/3X3xbwyHO1A/s1600-h/pan5.jpg"><img style="display:block;cursor:hand;text-align:center;margin:0 auto 10px;" src="http://2.bp.blogspot.com/_SPXoJ8NMtts/SUzwF3jgVqI/AAAAAAAAAXo/3X3xbwyHO1A/s400/pan5.jpg" border="0" alt="" width="494" height="316" /></a>En la pantalla anterior hacemos next para continuar,</div>
<div><a href="http://4.bp.blogspot.com/_SPXoJ8NMtts/SUzwCFIF3xI/AAAAAAAAAXg/n39h5XxY8EI/s1600-h/pan6.jpg"><img style="display:block;width:400px;cursor:hand;height:269px;text-align:center;margin:0 auto 10px;" src="http://4.bp.blogspot.com/_SPXoJ8NMtts/SUzwCFIF3xI/AAAAAAAAAXg/n39h5XxY8EI/s400/pan6.jpg" border="0" alt="" /></a>En la pantalla anterior nos indica que la instalación ha concluido y nos solicita la participación en la estadística, pruebas y mejoras del producto. También nos solicita el registro.</div>
<div>Una vez terminada la instalación, es opcional crear un lanzador en el escritorio, para poder crearlo es necesario identificar el ejecutable y el icono que representa a dicho producto.</div>
<div>El ejecutable se encuentra en /usr/local/netbeans-6.5/bin/ y se llama netbeans.</div>
<div>El icono se encuentra en la carpeta /usr/local/netbeans-6.5/nb6.5 y se llama netbeans.png</div>
<p>Si ahora ejecutamos desde el escritorio aparecerá</p></div>
<div>
<div><a href="http://4.bp.blogspot.com/_SPXoJ8NMtts/SUzv44wuSoI/AAAAAAAAAXQ/EV4USDHO8_M/s1600-h/pan8.jpg"><img style="display:block;width:400px;cursor:hand;height:280px;text-align:center;margin:0 auto 10px;" src="http://4.bp.blogspot.com/_SPXoJ8NMtts/SUzv44wuSoI/AAAAAAAAAXQ/EV4USDHO8_M/s400/pan8.jpg" border="0" alt="" /></a><br />
Si el equipo donde hemos instalado está conectado a internet, Netbeans intentará averiguar si existe alguna actualización tanto del producto base como de los distintos &#8220;plugin&#8221; que incorpora, si es así mostrará una pantalla similar a la siguiente:</div>
<div><a href="http://4.bp.blogspot.com/_SPXoJ8NMtts/SUzv0ThwENI/AAAAAAAAAXI/sGMO2WrA2dc/s1600-h/pan9.jpg"><img style="display:block;width:400px;cursor:hand;height:280px;text-align:center;margin:0 auto 10px;" src="http://4.bp.blogspot.com/_SPXoJ8NMtts/SUzv0ThwENI/AAAAAAAAAXI/sGMO2WrA2dc/s400/pan9.jpg" border="0" alt="" /></a><br />
En esta pantalla hacemos click sobre el botón Update, nos indicará cuál o cuáles son las actualizaciones pendientes en la siguiente pantalla</div>
<div><a href="http://4.bp.blogspot.com/_SPXoJ8NMtts/SUzvt7eilYI/AAAAAAAAAXA/0tQMFb3ezVM/s1600-h/pan10.jpg"><img style="display:block;width:400px;cursor:hand;height:279px;text-align:center;margin:0 auto 10px;" src="http://4.bp.blogspot.com/_SPXoJ8NMtts/SUzvt7eilYI/AAAAAAAAAXA/0tQMFb3ezVM/s400/pan10.jpg" border="0" alt="" /></a> Pulsamos ahora Next</div>
<div><a href="http://1.bp.blogspot.com/_SPXoJ8NMtts/SUzvnwubiAI/AAAAAAAAAW4/wxwgWXCj9x8/s1600-h/pan11.jpg"><img style="display:block;width:400px;cursor:hand;height:279px;text-align:center;margin:0 auto 10px;" src="http://1.bp.blogspot.com/_SPXoJ8NMtts/SUzvnwubiAI/AAAAAAAAAW4/wxwgWXCj9x8/s400/pan11.jpg" border="0" alt="" /></a> Aceptamos los términos de la licencia de cada una de las actualizaciones y pulsamos &#8220;update&#8221;</div>
<div><a href="http://4.bp.blogspot.com/_SPXoJ8NMtts/SUzvi4WyUVI/AAAAAAAAAWw/Mdd_xg2j7pc/s1600-h/pan12.jpg"><img style="display:block;width:400px;cursor:hand;height:280px;text-align:center;margin:0 auto 10px;" src="http://4.bp.blogspot.com/_SPXoJ8NMtts/SUzvi4WyUVI/AAAAAAAAAWw/Mdd_xg2j7pc/s400/pan12.jpg" border="0" alt="" /></a> En esta pantalla, a través del botón radial nos solicita la restauración inmediata o mas tarde del entorno integrado. Lo natural será &#8220;Restart IDE Now&#8221;. Pulsamos Finish para terminar.</div>
<div>Netbeans se cerrará y se abrirá de nuevo, con la incorporación de las actualizaciones y plugins instalados.</div>
<div>Una vez terminada esta tarea sería conveniente, indicarle al IDE Netbeans que revise todos las actualizaciones cada vez que se abra el entorno. Para ello, seleccionamos la opción Tools/Plugins y aparecerá la siguiente pantalla, en la que hemos seleccionado la pestaña Setting</div>
<div><a href="http://3.bp.blogspot.com/_SPXoJ8NMtts/SUzvZpYqLmI/AAAAAAAAAWo/ACcQP2Zvfi4/s1600-h/pan13.jpg"><img style="display:block;width:400px;cursor:hand;height:280px;text-align:center;margin:0 auto 10px;" src="http://3.bp.blogspot.com/_SPXoJ8NMtts/SUzvZpYqLmI/AAAAAAAAAWo/ACcQP2Zvfi4/s400/pan13.jpg" border="0" alt="" /></a> Vemos que el parámetro &#8220;check interval&#8221; se encuentra en &#8220;Every Week&#8221;, lo ideal sería cambiarlo a &#8220;Every Startup&#8221;, es decir</div>
<div><a href="http://1.bp.blogspot.com/_SPXoJ8NMtts/SUzvQYQpehI/AAAAAAAAAWg/Y-UpwJC-iyY/s1600-h/pan14.jpg"><img style="display:block;width:400px;cursor:hand;height:280px;text-align:center;margin:0 auto 10px;" src="http://1.bp.blogspot.com/_SPXoJ8NMtts/SUzvQYQpehI/AAAAAAAAAWg/Y-UpwJC-iyY/s400/pan14.jpg" border="0" alt="" /></a>Hacemos ahora &#8220;close&#8221; y si es necesario, reiniciamos el IDE Netbeans. De esta forma garantizamos que cada vez que iniciemos el entorno se actualice el producto y sus correspondientes plugin, si los hubiere.</div>
</div>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Installing NetBeans IDE 6.5 for JavaFX 1.0]]></title>
<link>http://arunbluebrain.wordpress.com/2008/12/11/installing-netbeans-ide-65-for-javafx-10/</link>
<pubDate>Thu, 11 Dec 2008 13:58:32 +0000</pubDate>
<dc:creator>arunbluebrain</dc:creator>
<guid>http://arunbluebrain.wordpress.com/2008/12/11/installing-netbeans-ide-65-for-javafx-10/</guid>
<description><![CDATA[The NetBeans IDE 6.5 for JavaFX 1.0 enables you to develop, debug, and prepare your JavaFX applicati]]></description>
<content:encoded><![CDATA[The NetBeans IDE 6.5 for JavaFX 1.0 enables you to develop, debug, and prepare your JavaFX applicati]]></content:encoded>
</item>
<item>
<title><![CDATA[Disponible "Patch 1" para Netbeans 6.5]]></title>
<link>http://vramirez.wordpress.com/2008/12/11/disponible-parche-1-netbeans-65/</link>
<pubDate>Thu, 11 Dec 2008 11:37:55 +0000</pubDate>
<dc:creator>vramirez</dc:creator>
<guid>http://vramirez.wordpress.com/2008/12/11/disponible-parche-1-netbeans-65/</guid>
<description><![CDATA[Ya se encuentra disponible un parche para Netbeans en el que se resuelven 62 bugs. A continuación le]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ya se encuentra disponible un parche para Netbeans en el que se resuelven 62 bugs. A continuación les indicaré como descargar estas actualizaciones:</p>
<p>Nos dirigimos al Update Center: Tools&#8211;&#62;Plugins. En la ficha que selecciona por defecto, &#8220;Available plugins&#8221;, le damos al boton &#8220;Reload catalog&#8221;. Esto permite que en la primera ficha, &#8220;Updates&#8221;, aparezca una nueva actualización, la cual se encarga de actualizar el Update Center, y entre otras cosas mejorará la búsqueda de nuevas actualizaciones y nos permitirá, luego ver y descargar el resto de actualizaciones. La seleccionamos y la instalamos, luego tendrás que reiniciar el IDE. Una vez vuelvas a entrar, te diriges de nuevo al Update Center, si la ficha de Updates te aparece vacia le das &#8220;Reload&#8221;, luego deben aparecer 17 nuevas actualizaciones, seleccionalas todas y sigue las instrucciones. Luego tendrás que reiniciar una vez más, para disfrutar de este parche.</p>
<p>Casi todos los módulos son intervenidos en esta actualización (Php, SaaS, Platform, Java, GlassFish V3, Ruby on Rails, Database, etc.) Es por esto, que realizar esta actualización es altamente recomendable. Si deseas saber la lista exacta de los bugs resueltos, visita este <a title="Wiki Netbeans" href="http://wiki.netbeans.org/NetBeans6.5PatchesInfo" target="_blank">link.</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Local History en Netbeans 6.5]]></title>
<link>http://vramirez.wordpress.com/2008/12/08/local-history/</link>
<pubDate>Tue, 09 Dec 2008 09:11:26 +0000</pubDate>
<dc:creator>vramirez</dc:creator>
<guid>http://vramirez.wordpress.com/2008/12/08/local-history/</guid>
<description><![CDATA[Cualquier editor, por muy básico que sea, tiene opciones para deshacer y devolvernos hasta determina]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Cualquier editor, por muy básico que sea, tiene opciones para deshacer y devolvernos hasta determinado punto. Netbeans no es la excepción, pues nos permite deshacer y rehacer lo que queramos. posiblemente por haber cometido un error, o haber omitido algún detalle en el diseño. Pero, que pasa si nos damos cuenta de que vamos por el camino equivocado un par de días después?? ya no podrás echar mano del &#8220;Control + Z&#8221;. Netbeans guarda distintas versiones de tu proyecto local y te permite volver exactamente a alguna de esas versiones. Como haces esto? muy sencillo: desde la ventana de proyectos haces click derecho en el archivo deseado, y seleccionas la opción <em>Local History</em>.</p>
<div id="_" style="text-align:center;padding:1em 0;"><a href="http://docs.google.com/File?id=dsbwfbn_222hkmjfvfp_b" target="_blank"><img style="width:363px;height:440px;" src="http://docs.google.com/File?id=dsbwfbn_222hkmjfvfp_b" alt="" /></a></div>
<p>Luego, se abre una nueva ventana, en la cual en 2 ventanas separadas verticalmente, se muestra una comparación del archivo actual, ubicado a la derecha, con las distintas evrsiones anteriormente gurdadas, las cuales se seleccionan en la parte superior. Las línes verdes indican texto añadido, las azules lo que ha sido modificado y lo rojo lo que se eliminó en la última versión.</p>
<div id="pk-_" style="text-align:center;padding:1em 0;"><a href="http://docs.google.com/File?id=dsbwfbn_223hrwfk839_b" target="_blank"><img style="width:1205px;height:619px;" src="http://docs.google.com/File?id=dsbwfbn_223hrwfk839_b" alt="" /></a></div>
<p>Pero, bueno que tantos días conserva Netbeans? Eso lo puedes averiguar en las opciones del IDE</p>
<div id="m9p." style="text-align:center;padding:1em 0;"><a href="http://docs.google.com/File?id=dsbwfbn_224dkbrndhs_b" target="_blank"><img style="width:782px;height:647px;" src="http://docs.google.com/File?id=dsbwfbn_224dkbrndhs_b" alt="" /></a></div>
<p>Como podemos ver este es un &#8220;Subversion monousuario&#8221;, el cual seguramente nos sacará de más de un aprieto, cuando el Ctrl+Z se quede corto :p.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Sun lanza la plataforma JavaFX]]></title>
<link>http://cafelojano.wordpress.com/2008/12/05/sun-lanza-la-plataforma-javafx/</link>
<pubDate>Fri, 05 Dec 2008 21:29:47 +0000</pubDate>
<dc:creator>Jorge López (jorgaf)</dc:creator>
<guid>http://cafelojano.wordpress.com/2008/12/05/sun-lanza-la-plataforma-javafx/</guid>
<description><![CDATA[Revisando el sitio de Sun he podido ver cómo se hace el lanzamiento de la plataforma JavaFX, para la]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Revisando el <a href="http://java.sun.com" target="_blank">sitio de Sun</a> he podido ver cómo se hace el lanzamiento de la plataforma JavaFX, para la cual han creado un <a href="http://javafx.com/" target="_blank">sitio</a>, en el cual pueden ver vídeos, descargar el SDK, ver ejemplos y demos de lo que se puede hacer con ésta plataforma para la construcción de interfaces de aplicaciones.</p>
<p>Adicionalmente la gente de NetBeans anunció (y me enteré vía correo) que se puede actualizar la versión 6.5 para soportar JavaFX, aún no sé si con un editor visual o a puras sentencias.</p>
<p>Esperemos y veamos como se adopta ésta nueva tecnología.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Instalación conjunta de JDK 6 update 11 con Netbeans 6.5 (Windows).]]></title>
<link>http://jtagua.wordpress.com/2008/12/01/instalacion-de-netbeans-60-windows/</link>
<pubDate>Mon, 01 Dec 2008 11:40:42 +0000</pubDate>
<dc:creator>Jtagua</dc:creator>
<guid>http://jtagua.wordpress.com/2008/12/01/instalacion-de-netbeans-60-windows/</guid>
<description><![CDATA[DESCARGA:   Desde la página web de Sun Microsystem, http://java.sun.com/javase/downloads/index.jsp p]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div>
<div>
<div>
<div><strong><span style="color:#ff0000;">DESCARGA:</span></strong></div>
</div>
<div><strong></strong> </div>
<div>Desde la página web de Sun Microsystem, <a href="http://java.sun.com/javase/downloads/index.jsp">http://java.sun.com/javase/downloads/index.jsp</a> podemos bajar los archivos necesarios para la instalación. Para ello seleccionamos la descarga JDL 6 update 11 with NetBeans 6.5</div>
<div> </div>
<div> </div>
<div style="text-align:center;"><img class="size-medium wp-image-17 aligncenter" title="image1" src="http://jtagua.wordpress.com/files/2008/01/image1.jpg?w=300" alt="image1" width="300" height="52" /></div>
<div> </div>
<div> </div>
<div> </div>
<div>aparecerá la siguiente página, en esta seleccionamos la descarga de <strong>JDK 6u11 with NetBeans IDE 6.5 Bundle</strong> , con esto la siguiente pantalla</div>
<div> </div>
<div> </div>
<div style="text-align:center;"><img class="alignnone size-full wp-image-18" title="image2" src="http://jtagua.wordpress.com/files/2008/01/image2.jpg" alt="image2" width="615" height="404" /></div>
<div> </div>
<div>como vemos, nos solicita la plataforma, el lenguaje y la aceptación de la licencia. Adoptamos los valores de Windows, Multi-language, aceptamos y pulsamos &#8220;Continue&#8221;</div>
<div>  </div>
<div> </div>
<p style="text-align:center;"><img class="alignnone size-full wp-image-20" title="image31" src="http://jtagua.wordpress.com/files/2008/01/image31.jpg" alt="image31" width="657" height="352" /></p>
<div> </div>
<div>  a partir de este momento comenzará la descarga del archivo jdk-6u11-nb-6_5-windows-ml.exe</div>
<div> </div>
<div><strong><span style="color:#ff0000;">INSTALACIÓN:</span></strong></div>
<div> </div>
<div>Localizamos el fichero <strong>jdk-6u11-nb-6_5-windows-ml.exe</strong> y hacemos doble click</div>
<div style="text-align:center;"><span style="color:#ff0000;"><strong></strong></span> </div>
<div style="text-align:center;"> </div>
<div style="text-align:center;"><img class="aligncenter size-full wp-image-120" title="image1" src="http://jtagua.wordpress.com/files/2008/12/image1.jpg" alt="image1" width="600" height="472" /></div>
<div style="text-align:center;"> </div>
<div style="text-align:left;">Pulsamos Next en la pantalla de bienvenida,</div>
<div style="text-align:left;"> </div>
<div style="text-align:center;"> </div>
<div style="text-align:center;"><img class="aligncenter size-full wp-image-121" title="image2" src="http://jtagua.wordpress.com/files/2008/12/image2.jpg" alt="image2" width="600" height="472" /></div>
<div style="text-align:left;"> </div>
<div style="text-align:left;">Aceptamos la licencia y pulsamos Next</div>
<div style="text-align:center;"> </div>
<div style="text-align:center;"> </div>
<div style="text-align:center;"><img class="aligncenter size-full wp-image-122" title="image3" src="http://jtagua.wordpress.com/files/2008/12/image3.jpg" alt="image3" width="600" height="472" /></div>
<div style="text-align:center;"> </div>
<div style="text-align:left;">Elegimos la capeta donde será  instalado el JDK y pulsamos Next</div>
<div style="text-align:left;"> </div>
<div style="text-align:center;"><img class="aligncenter size-full wp-image-123" title="image4" src="http://jtagua.wordpress.com/files/2008/12/image4.jpg" alt="image4" width="600" height="472" /></div>
<div style="text-align:left;"> </div>
<div style="text-align:left;">Fijamos el directorio donde queremos instalar Netbeans y pulsamos Next</div>
<div style="text-align:left;">  </div>
<div style="text-align:center;"> </div>
<div style="text-align:center;"><img class="aligncenter size-full wp-image-124" title="image5" src="http://jtagua.wordpress.com/files/2008/12/image5.jpg" alt="image5" width="600" height="472" /></div>
<div style="text-align:left;"> </div>
<div style="text-align:left;">Después de esta pantalla resumen pulsamos Install y comenzará la instalación.</div>
<div style="text-align:left;"> </div>
<div style="text-align:left;"> </div>
<div style="text-align:center;"><img class="aligncenter size-full wp-image-126" title="image7" src="http://jtagua.wordpress.com/files/2008/12/image7.jpg" alt="image7" width="600" height="472" /></div>
<div style="text-align:left;"> </div>
<div style="text-align:left;">Fijamos o no, nuestra intención de participar en la evaluación del producto y nos registramos, para pulsar finalmente Finish.</div>
<div style="text-align:left;">Con esto queda definitivamente instalado tanto el JDK como el propio entorno de desarrollo Netbeans. </div>
</div>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Disponible Netbeans 6.5!!!]]></title>
<link>http://vramirez.wordpress.com/2008/11/22/disponible-netbeans-65/</link>
<pubDate>Sat, 22 Nov 2008 17:41:41 +0000</pubDate>
<dc:creator>vramirez</dc:creator>
<guid>http://vramirez.wordpress.com/2008/11/22/disponible-netbeans-65/</guid>
<description><![CDATA[Desde hace un par de días, se encuentra disponible la úñtima versión de Netbeans; Netbeans 6.5, el c]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Desde hace un par de días, se encuentra disponible la úñtima versión de <a href="http://www.netbeans.org/" target="_blank">Netbeans</a>; Netbeans 6.5, el cual cuenta con muchísimas ayudas y herramientas. Recordemos que Netbeans dejó de ser hace muhco un simple editor de java, pues es compatible con muchas otras tecnologías como C++,PHP,Ruby, Ruby on rails, JRuby, J2ME, Spring,Hibernate,&#8230; en fin!</p>
<p>Además, ofrece soporte para algunos servidores de aplicaciones como WebSphere, JBoss, Tomcat y por supuesto GlassFish al cual incluye en el paquete &#8220;All&#8221;. Igualemente es compatible con bases de datos como MySQL, postgreSQL,Oracle y DB2.</p>
<p>Y aun hay más, pues corre en (casi) cualquier plataforma: MAC OS, Windows, Linux y obviamente Solaris.</p>
<p>Te invito a descargarlo <a title="Descargar Netbeans" href="http://www.netbeans.org/downloads/index.html" target="_blank">aqui</a>. Recomiendo la opción &#8220;All&#8221;. El paquete UML no está incluido, sin embargo, se puede descargar a través del &#8220;Update Center&#8221; de Netbeans.</p>
<p>Si quieres saber más, no dudes en visitar la página de <a href="http://www.netbeans.org/community/releases/65/" target="_blank">Netbeans 6.5</a>!!!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Django on Netbeans 6.5]]></title>
<link>http://esauro.wordpress.com/2008/11/21/django-on-netbeans-65/</link>
<pubDate>Fri, 21 Nov 2008 11:37:18 +0000</pubDate>
<dc:creator>Esaú Rodríguez</dc:creator>
<guid>http://esauro.wordpress.com/2008/11/21/django-on-netbeans-65/</guid>
<description><![CDATA[I developed using VIM and konsole using Python and Django. Some time ago Carlos Ble suggest me to us]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I developed using VIM and konsole using Python and Django. Some time ago <a href="http://www.carlosble.com">Carlos Ble</a> suggest me to use and IDE. The I try Eclipse + PyDev for a time, but never felt comfortable with it. Since Netbeans team decide to include Python in the supported languages Netbeans could work with; I decide to give it a chance.</p>
<p>While Django is not fully supported itself, I feel Netbeans much more fluent than a Eclipse. Netbeans is not perfect but, on my view, fits my needs more than Eclipse do. I&#8217;ll try to use this platform for a while before claim to be THE IDE.</p>
<p>Using Django with it is possible using the same trick I used with Eclipse. Set manage.py as the main file and <code>runserver --noreload</code> as argument. I didn&#8217;t success trying to do step-by-step debugging (I didn&#8217;t spent more than two minutes trying). </p>
<p>To be the &#8220;perfect&#8221; platform for Django developing Netbeans needs:</p>
<ul>
<li>Be able to create a django project</li>
<li>Be able to create django apps into a project</li>
<li>Be able to run manage.py shell</li>
<li>Be able to manage DB (At les manage.py dbshell</li>
<li>Manage Django tests (manage.py test)</li>
<li>Find method usage in templates</li>
<li>WYSWYG template editor</li>
</ul>
<p>The last one is not a real need but it would be great.</p>
<p>Even lacking all this features, I think is probably the best IDE for Django I have ever tried.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Nueva versión del entorno de desarrollo NetBeans.]]></title>
<link>http://jtagua.wordpress.com/2008/11/20/nueva-version-del-entorno-de-desarrollo-netbeans/</link>
<pubDate>Thu, 20 Nov 2008 13:57:00 +0000</pubDate>
<dc:creator>Jtagua</dc:creator>
<guid>http://jtagua.wordpress.com/2008/11/20/nueva-version-del-entorno-de-desarrollo-netbeans/</guid>
<description><![CDATA[Sun Microsystem liberó ayer día 19 de Noviembre, una nueva versión de su entorno integrado de desarr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://1.bp.blogspot.com/_SPXoJ8NMtts/SSwTjYi9ZrI/AAAAAAAAARs/bXLoP2VszQU/s1600-h/nb65.gif"><img style="display:block;width:204px;cursor:hand;height:35px;text-align:center;margin:0 auto 10px;" src="http://1.bp.blogspot.com/_SPXoJ8NMtts/SSwTjYi9ZrI/AAAAAAAAARs/bXLoP2VszQU/s400/nb65.gif" border="0" alt="" /></a></p>
<div>Sun Microsystem liberó ayer día 19 de Noviembre, una nueva versión de su entorno integrado de desarrollo de aplicaciones de escritorio en Java, aplicaciones web con tecnología J2EE, aplicaciones web en PHP, aplicaciones para móviles y aplicaciones escritas en C, C++ y Ruby&#8230;, se trata de <a title="Netbeans 6.5" href="http://www.netbeans.org/features/index.html">NetBeans 6.5</a> (Plataformas Windows, Linux, Mac OS X y Solaris).</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[News: Netbeans 6.5 released]]></title>
<link>http://javadude.wordpress.com/2008/11/20/news-netbeans-65-released/</link>
<pubDate>Thu, 20 Nov 2008 08:00:49 +0000</pubDate>
<dc:creator>devdude</dc:creator>
<guid>http://javadude.wordpress.com/2008/11/20/news-netbeans-65-released/</guid>
<description><![CDATA[Before I even could install and test the release candidate they released the official version yester]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Before I even could install and test the release candidate they released the official version yesterday.<br />
Check out Netbeans, my favorite IDE here (<a href="http://www.netbeans.org/downloads/index.html" target="_blank">link</a>).<br />
I guess<br />
a) the download servers are glowing now.<br />
b) some books need to be updated.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Netbeans 6.5 RC Can't load 6.1 Project]]></title>
<link>http://netbeansboy.com/2008/10/23/netbeans-65-rc-cant-load-61-project/</link>
<pubDate>Thu, 23 Oct 2008 08:05:53 +0000</pubDate>
<dc:creator>pncblessed</dc:creator>
<guid>http://netbeansboy.com/2008/10/23/netbeans-65-rc-cant-load-61-project/</guid>
<description><![CDATA[Normally I write posts to solve problems. Sadly today I&#8217;m writing a post out of desperation. I]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Normally I write posts to solve problems. Sadly today I&#8217;m writing a post out of desperation. I am currently reviewing the RC of Netbeans 6.5, it has some great features *BUT* we have our main huge project we are working on right now that we can&#8217;t work with in it.</p>
<p>It&#8217;s an enterprise application with Jasper Reports and Java Server Faces, however. We cannot load any JSF pages they don&#8217;t appear for editing, just the java code, we occasionally get an &#8220;Illegal State Exception&#8221;.</p>
<p>I read somewhere that the problem is to do with Jasper Reports, but even not loading the plugins we cannot load the JSF pages from the project in 6.5.</p>
<div><strong>UPDATE</strong></div>
<div>It is the jasper reports plugin Ireport causing the problem. Unfortunately you can&#8217;t just uninstall the plugin it seems to actually &#8220;stuff up&#8221; (technical term) NB completely.</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Database Explorer in NetBeans 6.5]]></title>
<link>http://brewednetbeans.wordpress.com/2008/08/23/database-explorer-in-netbeans-65/</link>
<pubDate>Sat, 23 Aug 2008 07:40:25 +0000</pubDate>
<dc:creator>James</dc:creator>
<guid>http://brewednetbeans.wordpress.com/2008/08/23/database-explorer-in-netbeans-65/</guid>
<description><![CDATA[Do you work often with sql queries? Are you tired of running another gui tool like MySQL Query Brows]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Do you work often with sql queries? Are you tired of running another gui tool like MySQL Query Browser or SQL Server 2005 Management Studio (really a pain, if all you want is just executing some sql queries). Even worse, if you are working on an application which should be tested on multiple databases. So are you searching for some simple lightweight query executing tool or scratching your head to even come out with your own tool? Come on, if you are using NetBeans you have a great way out.</p>
<p>(You might probably be living under a rock if you haven&#8217;t ever heard about NetBeans. NetBeans is currently one of the world&#8217;s most popular IDE for Java, Ruby, Groovy, PHP and so on. If you haven&#8217;t ever tried NetBeans come on, try it today. You will be surprised)</p>
<p>For ages, NetBeans comes with a database explorer that can be used to connect to virtually any database in this universe that has a jdbc driver. You can use the NetBeans database explorer to execute sql queries, visualize your tables, identify your primary/foreign keys etc, etc..</p>
<p>But with NetBeans 6.5, the database explorer module has been sharpened and some good new features were added. I would like to highlight some of them (please forgive me if you find me highlighting some old featuers as well)</p>
<p>Well, the single most important feature provided by the database explorer in NetBeans 6.5 is the support for &#8220;tabbed views&#8221; of your result set. Trust me, it is better than some of the gui tools provided by the database vendors themselves. Ok, enough talking, let me show you this cool features with some screenshots.</p>
<p><!--more--></p>
<p><img class="alignnone" src="http://farm3.static.flickr.com/2371/2788226067_4df308d2b1_o.png" alt="" width="359" height="314" /></p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3260/2789078796_17aed8d5b7_o.png" alt="" width="641" height="442" /></p>
<p>What is the we see here..? You execute multiple sql queries and NetBeans shall display the result in new tabs. You can even set the number of rows you want to see and then navigate through the &#8220;paginated&#8221; table.</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3013/2789078920_54e00008d1_o.png" alt="" width="588" height="490" /></p>
<p>What more, you can refresh your result set and even insert new data without writing any sql!</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3219/2788226121_2da43961a7_o.png" alt="" width="218" height="131" /></p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3161/2788226191_0b5911ccb1.jpg?v=0" alt="" width="500" height="447" /></p>
<p>The IDE even provides a cool &#8220;SQL History&#8221;, which can be very useful to execute some of the previously written queries.</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3155/2789078950_60dc503153_o.png" alt="" width="171" height="70" /></p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3232/2789078990_e726cbd7a6_o.png" alt="" width="660" height="379" /></p>
<p>Some other features include, user interfaces for creating new tables, columns etc..</p>
<p>The following screenshot shows the property of a column.</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3259/2789079108_337d8698c8_o.png" alt="" width="468" height="512" /></p>
<p>A simple gui but very useful tool to create tables.</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3183/2789079162_438bdd9172_o.png" alt="" width="670" height="337" /></p>
<p>The gui to add column.</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3027/2788226501_ace6fd6578.jpg?v=0" alt="" width="500" height="408" /></p>
<p><strong>Suggestions to the NetBeans team:</strong></p>
<p>Though the database explorer in NetBeans 6.5 is very good, I feel some more features, if added, can turn NetBeans into a really powerful database tool. Some of them are..</p>
<p>- Provision to just execute &#8220;selected queries&#8221;. Say I open one &#8220;SQL Command&#8221; and write three different queries. I must be able to just &#8220;select&#8221; the query I want and then execute it. Currently I need to comment out the unwanted queries or I should open a new &#8220;SQL Command&#8221; window. This can be a very useful feature.</p>
<p>- Provision to visualize the &#8220;meta data&#8221; of all the table columns like &#8220;size&#8221;, &#8220;datatype&#8221; etc in one single window. Right now, I need to right click every single column and then select &#8220;properties&#8221; to achieve the same.</p>
<p>- Provision to visualize the table relationships using the powerful &#8220;scenegraph&#8221; api.</p>
<p>- Provision to set table relationships.</p>
<p><strong>Conclusion:</strong></p>
<p>Overall, the database explorer in NetBeans 6.5 can be a very useful tool for developers and thanks to the NetBeans team for all their hardwork.</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
