<?xml version="1.0"?>
<rss version="2.0">
<channel>
  <title>The BrainStreamer way - java tag</title>
  <link>http://www.brainstreamer.com:80/pebble/tags/java/</link>
  <description>A blog about developing Brainstreamer</description>
  <language>en</language>
  <copyright>Peter Muys</copyright>
  <lastBuildDate>Wed, 07 Nov 2007 05:28:00 GMT</lastBuildDate>
  <generator>Pebble (http://pebble.sourceforge.net)</generator>
  <docs>http://backend.userland.com/rss</docs>
  
  
  <item>
    <title>BrainStreamer 2.0 Current status</title>
    <link>http://www.brainstreamer.com:80/pebble/2007/09/16/1189934700000.html</link>
    
      
      
        <description>
          Work on BrainStreamer 2.0 is really going well.&lt;br /&gt;
I&#039;m using the development version of BrainStreamer 2.0 full time now and I think&lt;br /&gt;
it is a real improvement compared to the 1.2 version.&lt;br /&gt;&lt;p&gt;&lt;a href=&#034;http://www.brainstreamer.com:80/pebble/2007/09/16/1189934700000.html&#034;&gt;Lees meer...&lt;/a&gt;&lt;/p&gt;
        </description>
      
    
    
    
    <category>java</category>
    
    <category>business</category>
    
    <comments>http://www.brainstreamer.com:80/pebble/2007/09/16/1189934700000.html#comments</comments>
    <guid isPermaLink="true">http://www.brainstreamer.com:80/pebble/2007/09/16/1189934700000.html</guid>
    <pubDate>Sun, 16 Sep 2007 09:25:00 GMT</pubDate>
  </item>
  
  <item>
    <title>One of the many reasons why I develop in Java</title>
    <link>http://www.brainstreamer.com:80/pebble/2007/03/06/1173168720000.html</link>
    
      
        <description>
          &lt;p&gt;       From &lt;a href=&#034;http://www.itweek.co.uk/itweek/news/2184757/research-finds-java-code-secure&#034;&gt;www.itweek.co.uk&lt;/a&gt;&amp;nbsp;:     &lt;/p&gt;
&lt;blockquote&gt;            &lt;/blockquote&gt;     &lt;blockquote&gt;       New research from software security specialist Fortify reveals that bugs        are far less common in Java compared with commercial C/C++ code     &lt;/blockquote&gt;     &lt;blockquote&gt;       Dave Bailey, IT Week, 05 Mar 2007     &lt;/blockquote&gt;     &lt;blockquote&gt;       Application code security specialist Fortify Software will today unveil        research from its Java Open Review (JOR) showing that there are        &amp;quot;significantly fewer bugs in open-source Java components than in        commercial C/C++ programs&amp;quot;. Fortify founder Roger Thornton said that the        difference was &amp;quot;an order of magnitude fewer&amp;quot;.     &lt;/blockquote&gt;
&lt;p&gt;            &lt;/p&gt;
&lt;p&gt;       This is in fact one of the main reasons, I switched from using C/C++        (used it for more than 10 years) in 1995 to Java.     &lt;/p&gt;
&lt;p&gt;       Having to think about memory management, dangling pointers,        uninitialized variables distracts you from what you try to achieve.     &lt;/p&gt;
&lt;p&gt;       Also one of the nice things in Java was that everything is what it seems        (no preprocessor).     &lt;/p&gt;
&lt;p&gt;            &lt;/p&gt;
&lt;p&gt;       Peter     &lt;/p&gt;
        </description>
      
      
    
    
    
    <comments>http://www.brainstreamer.com:80/pebble/2007/03/06/1173168720000.html#comments</comments>
    <guid isPermaLink="true">http://www.brainstreamer.com:80/pebble/2007/03/06/1173168720000.html</guid>
    <pubDate>Tue, 06 Mar 2007 08:12:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Forget the Swing HTML Editor</title>
    <link>http://www.brainstreamer.com:80/pebble/2007/03/05/1173082080000.html</link>
    
      
        <description>
          &lt;p&gt;       I have changed my mind.     &lt;/p&gt;
&lt;p&gt;       Developing the HTML editor using Swing JTextPane would cost to much time        to develop.     &lt;/p&gt;
&lt;p&gt;       I have now bought the HTML Editor from Sferyx.     &lt;/p&gt;
&lt;p&gt;       It looks like it has everything I need.     &lt;/p&gt;
        </description>
      
      
    
    
    
    <comments>http://www.brainstreamer.com:80/pebble/2007/03/05/1173082080000.html#comments</comments>
    <guid isPermaLink="true">http://www.brainstreamer.com:80/pebble/2007/03/05/1173082080000.html</guid>
    <pubDate>Mon, 05 Mar 2007 08:08:00 GMT</pubDate>
  </item>
  
  <item>
    <title>A simple html editor for java</title>
    <link>http://www.brainstreamer.com:80/pebble/2007/03/04/1172995680000.html</link>
    
      
        <description>
          &lt;p&gt;       I am a &lt;strong&gt;big Java fan&lt;/strong&gt;, but sometimes I can get a bit frustrated.     &lt;/p&gt;
&lt;p&gt;       I need a simple html editor for my application. Should something like        this be in swing ?     &lt;/p&gt;
&lt;p&gt;       Yesterday I tried to use the HtmlEditorKit. It works for most things,        but to let it work in the real world, you need a lot of extra code.     &lt;/p&gt;
&lt;p&gt;       Drag and drop from Ms Word doesn&#039;t work out of the box.     &lt;/p&gt;
&lt;p&gt;       It took me some time to figure out that you need to add this:     &lt;/p&gt;
&lt;pre&gt;HTMLDocument doc = (HTMLDocument)textPane.getDocument();&lt;br /&gt;doc.putProperty(&amp;quot;IgnoreCharsetDirective&amp;quot;, Boolean.TRUE);&lt;br /&gt;doc.setPreservesUnknownTags(false);&lt;br /&gt;&lt;br /&gt;Next, you need to define all the needed actions like : &lt;br /&gt;align, lists, font selection, paragraph type, image and links...&lt;/pre&gt;
&lt;p white-space=&#034;pre&#034;&gt;       I will need another full day to add these. ( and I lost already a lot of        time yesterday ).     &lt;/p&gt;
&lt;p white-space=&#034;pre&#034;&gt;            &lt;/p&gt;
&lt;p white-space=&#034;pre&#034;&gt;            &lt;/p&gt;
        </description>
      
      
    
    
    
    <comments>http://www.brainstreamer.com:80/pebble/2007/03/04/1172995680000.html#comments</comments>
    <guid isPermaLink="true">http://www.brainstreamer.com:80/pebble/2007/03/04/1172995680000.html</guid>
    <pubDate>Sun, 04 Mar 2007 08:08:00 GMT</pubDate>
  </item>
  
  </channel>
</rss>
