You can find the results of your search below. If you didn't find what you were looking for, you can create or edit the page named after your query with the appropriate button.
JavaOne 2008:
39 Hits====== JavaOne 2008 ======
I attended JavaOne in San Francisco on May 6 - 9, 2008. Community One was he... ers are verbose. YMMV.
* Day 0: [[technology:java:javaone2008:day0|Community One]]
* Day 1: [[technology:java:javaone2008:day1|Java One Day 1]]
* Day 2: [[technology:java:javaone2008:day2|Java One Day 2]]
* Day 3: [[technology:java:javaone2008:day3|Java One Day 3]]
* Day 5: [[technology
JavaOne 2008, Day 1:
38 Hits====== JavaOne 2008, Day 1 ======
The day started out very well. My coworkers and I walked from our hot... hed us off, knowing that a never-ending stream of JavaOne attendees could corner him. But instead, he s... tware) came out and introduced this years theme: Java + You. He mentioned that never before have end u... those special book formats.
- the device runs java and can be extended with 'booklets'((you **did**
Installing GlassFish V3 Final on Ubuntu:
29 Hitsto do things myself.
===== Step 1: Setting up Java =====
The OpenJDK was installed on my machine by ... re openjdk-6-jdk
...
sudo apt-get install sun-java6-jdk sun-java6-jre
...
sudo apt-get autoremo... at weren't needed anymore, like ''ca-certificates-java'' and ''libjline-java''. Again, I don't know wha... alternatives
me@myhost:/etc/alternatives$ ls -lrt java*
lrwxrwxrwx 1 root root 39 2009-11-01 18:02 java_
Java Tutorials:
16 Hits====== Java Tutorials ======
* Using [[strings_in_case_statements|Strings in Case Statements]]
* Fin... [[Installing GlassFishV3 on Ubuntu 9.10]]
====== Java Code Examples ======
<html>
<iframe align="right"... ml_schema_validator_2|XML Schema Validator 2 (non-Java)]]
* [[spreadsheet_reader|Spreadsheet Reader]]
... le]]
* [[class_loaders|Class Loaders]]
====== Java Resources ======
* My trip to [[technology:jav
Résumé:
13 Hits ways to reach customers. Technologies include: Java, PHP, Asterisk, Oracle, MySQL, Jabber, Linux, Sol... l.com|BCBSFL]] from October 2001 to May 2004 as a Java Software Developer. I was a member of Data Archi... for object modelling.
**Tasks: **
* Designed Java Data Access Objects to manage data requests
* D... clients normalization standards
* Architected a Java-to-XML binding framework using [[http://www.casto
Finding Too-New Code:
12 Hitsr JVM yet ((like Weblogic 10, which only supports Java 1.5 even though Java 1.6 has been available for o... o find code that won't run on an older version of Java? Simple! use the ''-source'' parameter to ''javac''. Lets do an example:
<code java>
import java.util.*;
class GenericsTest
{
public sta... ics--a language feature that is only available in Java 1.5 and higher. Lets suppose our code needs to r
Visual Calendar Servlet:
10 Hitsends on my [[technology:datetools]] class.
<code java>
/**
* Insert the type's description here.
* Cr... 0:20:12 AM)
* @author: Administrator
*/
import java.io.*;
import java.util.*;
import DateTools;
public class CFWebCalendar extends javax.servlet.http.HttpServlet {
/**
* Process incoming HTTP GET requ... e response from the servlet
*/
public void doGet(javax.servlet.http.HttpServletRequest request, javax.s
Assert example:
10 Hits example ======
Assertions are a debated topic in Java. They were implemented in such a way that they t... he assertion failure. Here is an example:
<code java>
package com.freyer.test;
public class Assertion... to enable and disable assertions, as follows:
java -disableassertions com.freyer.test.AssertionTest --> disable all assertions
java -da com.freyer.test.AssertionTest
Community One:
9 Hits====== Community One ======
Monday at JavaOne was not officially part of Java One. It was called Commun... n all the community efforts that surround Sun and Java.
===== Opening Keynote =====
The opening keyno...
Overall, a very good session.
==== Developing JavaFX Applications for the Enterprise ====
I'm not re... The presenter began by speaking about traditional Java EE applications, and showing slides that point ou
Experiment #3:
8 Hits the simplified versions of those classes:
<code java 1>
/*..package and import statements here..*/
pu... 30 artists, 4 albums each, 11 songs each.
<code java 1>
/* Jo4NeoPerformanceExercise
* Chris Freyer
...
package com.freyertech.jo4neotest.model;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Calendar;
import jo4neo.ObjectGraph;
import jo4neo.
Web History:
7 Hits * 2002, Comment in November's [[pdf.sys-con.com/Java/ant.pdf|Java Developers Journal]] about project m... native app)
* 2004, answering a question about Java vs. C++ in the [[http://lists.opensuse.org/opensu... .38.126.65/mirror/www.netlib.org/benchmark/linpackjava/timings_list.html|Java Linpack Timings]] benchmar... mmenting on [[http://blogs.sun.com/jonathan/entry/java_is_everywhere|Sun's stock ticker change to "JAVA"
Handling Compiler Warnings:
7 Hitsmple example, without the utility function:
<code java>
class ForNameTest
{
public static void main... st'' warning at compile time:
<code>
ForNameTest.java:6: warning: [unchecked] unchecked cast
found : java.lang.Object
required: java.lang.Class<MyClass>
Class<MyClass> myclass = (Class<MyClass> ) o... ast an object in code, and it throws a ''[[http://java.sun.com/j2se/1.5.0/docs/api/java/lang/ClassCastEx
Java Class Loaders:
6 Hits====== Java Class Loaders ======
Most java programs don't need to manipulate the JVM class loader. But ... =
So create a basic class loader like this:
<code java>
package com.freyertech.classloaders;
import java.net.URL;
import java.net.URLClassLoader;
public class DoNothingClassLoader extends ClassLoader {
... his, to call a program with a main() method:
java -Djava.system.class.loader=com.freyertech.classlo