Search tips
  • ajax & more
    # JAVA # Java Application Template GUI Tutorial # JAVA: Serial Port Console for Windows, Linux etc. # JAVA: Serial Port access with javax.comm or rxtx # JAVA: Convert binary data to double, float, int, long # Java - open a local file from an applet # JAVA application - executable JAR archive # java.lang. NoClassDefFoundError - javac: target release 1.1 conflicts with default source release 1.5 # SUN Java vs. MicroSoft Java plugin for the browser
    in Public bookmarks with ajax java sourcecode tipsntricks
  • All The Code - FAQ
    F.A.Q. - Getting Started Guide:: What is All The Code? F.A.Q. - Getting Started Guide:: What does "alpha" mean? F.A.Q. - Getting Started Guide:: When will All The Code be in Beta? F.A.Q. - Getting Started Guide:: How do I submit code to All The Code? F.A.Q. - Getting Started Guide:: When will All The Code support language [x]? F.A.Q. - Getting Started Guide:: I found a bug, who do I report it to? F.A.Q. - Getting Started Guide:: I have an idea for a feature, who do I send it to?
    in Public bookmarks with sourcecode
  • Chapter 31: java.awt.image
    Producers, Consumers, and Observers Java's model for manipulating images is more complex than other models. Java uses the concept of image producers and image consumers. An example of an image producer might be an object responsible for fetching an image over the network, or it might be a simple array of bytes that represent an image. The image producer can be thought of as the source of the image data. Image consumers are objects that make use of the image data. Image consumers are, typically, low-level drawing routines that display the image on-screen. The interesting thing about the producer-consumer model is that the producer is "in control." The ImageProducer uses the setPixels method in the ImageConsumer to describe the image to the consumer. The best
    in Public bookmarks with java sourcecode tipsntricks tutorial
  • Codase: ImageResizer.java
    /** * * Image re-sizer class that was pulled from net. made all methods private, except * for the ones that we want to interface. * * @author James Williams
    in Public bookmarks with graphic java sourcecode
  • codefetch help and examples
    .* Match any character or space or anything or nothing at all. .+ Match any character or space or anything (but not nothing--there has to be at least one char). \d+ Match one or more digits. \s Match one space or tab or other whitespace. \s+ Match one or more spaces or tabs or other whitespaces. \b Match a word boundary. Examples: foo\b finds foo, tofoo, foo.lish but not foolish or fool_ish foo bar finds a page with "foolish" then "antibarista", one with "bar" then "foo", and others foo\b bar\b finds pages with both "foo" and "bar". Also matches "NotAFoo" and "rebar". foo\s+bar finds "foo bar" and "foo bar" but not "barfoo" or "bar foo". foo.*bar finds "foobar", "foo blah blah{}bar" but not "barfoo" port.+\d+ finds lines with "port" and any number of digits
    in Public bookmarks with sourcecode
  • exampledepot.com - Java Examples from The Java Developers Almanac 1.4
    This website supplements the book The Java Developers Almanac 1.4. All the code examples from the book are made available here for you to copy and paste into your programs.
    Java Code Examples from The Java Developers Almanac
    examples java
    in Public bookmarks with java sourcecode tipsntricks tutorial by 5 users
  • imagetoolz
    Image toolz is a java program for creating beautyful images. For example the 'Image Toolz' above has been rendered by this program. For the moment it is a software library. If you want to use it you must download the zip file and write a java program calling the methods in the library. We are working on a user interface.
    in Public bookmarks with graphic java sourcecode
  • Java ist auch eine Insel
    In this Blog I write open SOURCE, Javascript, new Eclipse Plugins and further over current Entwickungen in Java, software development generally. Name: Christian Ullenboom Location: Hanover, Lower Saxony, DE I am since 1997 Java coaches and author of the book› Java am also an island ‹. Since I may call myself September 2005› Java champions ‹.
    in Public bookmarks with blog java sourcecode
  • Java Practices: Recursive file listing
    The File class has methods for listing the contents of a single directory, such as list and listFiles, but there is no method for listing all files in a directory tree. Here is a simple utility which returns a sorted List of File objects which reside under a given root directory. It uses recursion. import java.util.*; import java.io.*; /** * @author javapractices.com * @author Alex Wong */ public final class FileListing { /** * Demonstrate use. */ public static void main(String... aArguments) throws FileNotFoundException { File tempDir = new File(aArguments[0]); List files = FileListing.getFileListing( tempDir );
    Concise presentations of java programming practices, tasks, and conventions, amply illustrated with syntax highlighted code examples.
    coding conventions design idiom java patterns practices programming recursive style
    in Public bookmarks with java sourcecode
  • Java Programming Notes
    Java Notes. These Java programming notes are written to fill in missing or weak topics in textbooks that I've taught from. Many pages are useful for reference, but not as an ordered tutorial. Some pages are still rough drafts, but I'm slowly working on fixing them. notes-java-2007-01-15.zip [2.0 MB]. Java Basics. I've started writing a more coherent tutorial called Java Basics. In addition to lessons, there is also commentary which explains why things are done the way they are. JavaBasics-2007-01-15.zip [0.3 MB].
    in Public bookmarks with java sourcecode tipsntricks tutorial by 4 users
  • JavaForge: CodeBeamer
    Scalable Project Hosting <<code search>>
    CodeBeamer is a web based collaborative development platform that enables geographically dispersed groups of developers to collaborate on common source code
    in Public bookmarks with java sourcecode system:unfiled
  • JIU – The Java Imaging Utilities – An image processing library
    JIU, the Java Imaging Utilities, is a library which offers functionality to load, analyze, process and save pixel images. It is written in Java and comes with full source code under the GNU General Public License (GPL) version 2. JIU requires Java version 1.1 or higher.
    Website of JIU, a Java library to load, process, analyze and save pixel images.
    development image imaging java jiu library processing software utilities
    in Public bookmarks with graphic java sourcecode by 2 users
  • KickJava.com - Java API By Example, From Geeks To Geeks.
    A to Z: JavaDoc & Examples Daily Java News & Articles Open Source Projects Open Source Codes Free Java Books java.* applet (6) awt (94) beans (12) io (110) lang (275) math (15) net (44) nio (34) rmi (2) security (20) sql (81) text (37) util (292) javax.* accessibility (1) activation (2) activity ce crypto (10) ejb (13) enterprise imageio (7) jms (16) mail (26) management (1) microedition (16) naming (9) net (10) pim (2) power (1) print (15) resource (6) rmi (1) security (21) servlet (53) sound (2) sql (7) swing (165) telephony (7) transaction (3) tv xml (76) javacard.* framework (9) security (2) javacardx.* crypto org.* ietf (1) omg (11) w3c (92) xml (27)
    Java API By Example, From Geeks To Geeks.
    api book books developer development downloads enterprise example free j2ee j2me j2se java jobs jsp news resources servlets tom
    in Public bookmarks with api database java sourcecode sql tutorial by 3 users
  • Koders
    ResizeImage.java
    in Public bookmarks with graphic java sourcecode
  • Koders
    ImageTools.java
    in Public bookmarks with graphic java sourcecode
  • Koders
    Thumbnailer.java
    in Public bookmarks with graphic java sourcecode
  • Koders
    ImageResizer.java
    in Public bookmarks with graphic java sourcecode
  • Koders: ImageUtils.java
    * Utilities methods for image manipulation. * It does not support writting of GIF images, but it * can read from. GIF images will be saved as PNG. * * @author Rafael Steil * @version $Id: ImageUtils.java,v 1.15 2005/12/23 20:37:00 rafaelsteil
    in Public bookmarks with graphic java sourcecode utils
  • Krugle
    Code Search for Developers
    Krugle is the leading enterprise code search portal. It powers Open Search, a search engine of the top open source projects. Search code, defects, and other artifacts, browse activity, and review commits.
    engine krugle open search software source
    in Public bookmarks with sourcecode by 28 users
  • Krugle ImageResizer.java (elvis library)
    http://www.pg.gda.pl/
    Open Source Code, Project and Technical Pages Search for Developers.
    in Public bookmarks with graphic java sourcecode

Next »
sourcecode from all users