• skip to content

TheFreyers.net

User Tools

  • Login

Site Tools

  • Recent changes
  • Media Manager
  • Sitemap
You are here: Welcome » java

java

Search

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 tool.

Results

Matching pagenames:

  • Assert example
  • Java Class Loaders
  • Handling Compiler Warnings
  • Easter Date Calculations
  • Finding Too-New Code
  • Java Tutorials
  • Installing GlassFish V3 Final on Ubuntu
  • JavaOne 2008
  • Writing to separate log files with Log4J
  • Spreadsheet Reader
  • Using Strings in Switch Statements
  • Thread Example
  • Visual Calendar Servlet
  • XML Schema Validator
  • Non-Java XML Schema Validator
  • Community One
  • JavaOne 2008, Day 1
JavaOne 2008: 39 Hits
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:java:javaone2008:day4|Java One Day 4]] ===== Sightseeing ===== I had a little bit of time fo
JavaOne 2008, Day 1: 38 Hits
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** ... y-syntax way to write fat client applications for Java SE, Java ME, and Java TV (to debut later in 2008). Sun gave 3 incredible demos using Java FX: - __ConnectedLife__ - a social networking applicat
Installing GlassFish V3 Final on Ubuntu: 29 Hits
to 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_
Finding Too-New Code: 12 Hits
r 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
Java Tutorials: 11 Hits
====== Java Tutorials ====== * Using [[strings_in_case_statements|Strings in Case Statements]] * Fin... ting to separate log files with [[Log4J]] ====== Java Code Examples ====== Following are some code exam... 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
Visual Calendar Servlet: 10 Hits
ends 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; publi... response) throws javax.servlet.ServletException, java.io.IOException { performTask(request, response)... response) throws javax.servlet.ServletException, java.io.IOException { performTask(request, response)
Résumé: 10 Hits
ion bandwidth by 80% * Designed & implemented a Java EE middle tier application. This proxy converts ... tiple clients and users. Technologies included: Java, PHP, Asterisk, Oracle, MySQL, Jabber, Linux, Sol... ance in multiple languages and environments ==== Java EE Contractor. Blue Cross Blue Shield of Florida... se for object modelling. **Tasks:** * Designed Java Data Access Objects to manage data requests * D
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
==== Monday at JavaOne was not officially part of Java One. It was called Community One and was focused... n all the community efforts that surround Sun and Java. ===== Opening Keynote ===== The opening keyno... The presenter began by speaking about traditional Java EE applications, and showing slides that point ou... ally, JFugue is a project that sits on top of the Java media system and makes dealing with it simple. J
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.
Handling Compiler Warnings: 7 Hits
mple 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
Web History: 6 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... etlib.org/benchmark/linpackjava/timings_list.html|Java Linpack Timings]] benchmark effort. * 2005, usi... mmenting on [[http://blogs.sun.com/jonathan/entry/java_is_everywhere|Sun's stock ticker change to "JAVA"
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
Easter Date Calculations: 5 Hits
on the internet, written in C. I converted it to Java and have used it ever since when I need a convenient way to calculate the date of Easter. <code java> import java.util.Date; import java.util.Calendar; import java.text.SimpleDateFormat; class EasterDate { public static void main(String[] args)
Formatting Syntax: 4 Hits
Thread Example: 4 Hits
Non-Java XML Schema Validator: 4 Hits
Spreadsheet Reader: 4 Hits
Ant: 4 Hits
OSX Likes and Dislikes: 3 Hits
Reading the Body of an Email: 3 Hits
Pulse SmartPen: 3 Hits
Technology: 2 Hits
Experiment #2: 2 Hits
sidebar: 2 Hits
TECHNOLOGY: 2 Hits
XML Schema Validator: 2 Hits
DateTools: 2 Hits
Using Strings in Switch Statements: 2 Hits
Writing to separate log files with Log4J: 2 Hits
Technical Drawing: 1 Hits
Experiment #1: 1 Hits
XML File Validation: 1 Hits
Namespace Security: 1 Hits
How not to get hired: 1 Hits

Page Tools

  • Show pagesource
  • Old revisions
  • Backlinks
  • Back to top
Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki