• home
  • forum
  • my
  • kt
  • download
  • this:2/6 25records  total:132    Start  Previous  Next  Last    goto:
    Quick Java programming with FESI
    ON: 2007-08-03 14:02:44
    In the real world of everyday computing (and development), there are many situations where "whipping up a Java program" to perform a task is either impractical or too time consuming. This article takes you into the underground world of FESI (Free EcmaScript Interpreter), where deploying the Java language in a quick-and-dirty fashion is the norm rather than the exception. Article includes code snipets.
    11 times | category: [Miscellaneous]
    Introduction to WBEM and the CIM
    ON: 2007-08-03 14:00:31
    This is a continuation of the three-part series on building resource management applications. It takes a look at the Web-Based Enterprise Management (WBEM) initiative. WBEM serves to standardize the description and use of managed resources in enterprise networks. Follow along as the author describes the components that comprise WBEM, and practice using the technology with a simple filesystem example.
    18 times | category: [Miscellaneous]
    Getting started with the FMA and Jiro
    ON: 2007-08-03 13:56:12
    If you're looking for a unique programming challenge, try your hand at building a management application for a distributed, cross-platform network. This article is the first in a three-part series that looks at how Sun Microsystems's Jiro technology and the Distributed Management Task Force's Web-Based Enterprise Management Initiative (WBEM) can simplify the creation of management applications for heterogeneous environments.
    5 times | category: [Miscellaneous]
    Faster apps on a better machine
    ON: 2007-08-03 13:52:50
    If you want to build and run faster Java applications on the IBM Developer Kit for Linux, version 1.3, roll up your sleeves and prepare to get dirty. This article provides hands-on instruction for profiling, monitoring, and performance tuning not only your IBM Developer Kit, but your hardware capacity, the Linux 2.2.x kernel, and your Java applications.
    28 times | category: [Miscellaneous]
    Diagnosing Java Code: The Liar View bug pattern
    ON: 2007-08-03 13:51:20
    GUIs are generally designed with a model-view-controller architecture in which the view is decoupled from the model. The separation presents a challenge to automated testing because it's difficult to verify that a state change in the model is reflected appropriately in the view -- it spawns the infamous "Liar View." This installment of Diagnosing Java Code examines the Liar View bug pattern.
    2 times | category: [Miscellaneous]
    Build your own Java-based supercomputer
    ON: 2007-08-03 13:50:05
    If you've ever wanted to build your own supercomputer but have been held back by the demands of parallel programming in C, Pseudo Remote Threads is for you. This prize-winning Java programming model greatly simplifies parallel programming on clusters, bringing supercomputing out of the laboratory and into the hands of everyday Java programmers. Article includes code snipets
    13 times | category: [Miscellaneous]
    WAP builds Java applications
    ON: 2007-08-03 13:40:33
    If your company already relies on multitiered enterprise Java applications, then you may be closer to a wireless future than you think. By outlining a sample application, this article shows you how to connect your existing enterprise Java infrastructure to a wireless network with minimal investment in equipment and labor. Using existing EJBs, modified servlets, and new WML and WMLScript pages makes the process a snap.
    16 times | category: [WAP and WML]
    How-to make a JAVA GUI Application
    ON: 2007-08-03 13:34:54
    In this tutorial you will be given the knowledge of GUI, how to make frames, panels, buttons and how to display dialog boxes. As usual, the article will take the naughty approach to teach the good stuff.
    38 times | category: [Swing]
    Adding File Filters to the JFileChooser Dialog
    ON: 2007-08-03 13:34:16
    When using the JFileChooser dialog to open files, you will usually want to give the user a list of filters to make finding a file of a specific type easier. When using the JFileChooser to dialog to save files, you will usually want to give the user a list of types that they can save the file as. This tutorial will show how to do this. This tutorial will show how to create a file filter to only show text files and a file filter that shows only files that are less than a month old.
    21 times | category: [Swing]
    Using Custom Cursors in Java
    ON: 2007-08-03 13:33:51
    This tutorial shows how to go beyond the predefined cursors in Java and create your own cursors using a GIF or PNG that are displayed when the user moves the mouse over a Java component (AWT or Swing).
    15 times | category: [Swing]
    Exiting an Application when a JFrame is Closed
    ON: 2007-08-03 13:33:23
    This tutorial shows how to change the default close action to exit the application when the window is closed. In additon, this discusses the different close actions.
    8 times | category: [Swing]
    Introduction to Glass Panes
    ON: 2007-08-03 13:27:51
    This tutorial provides an introduction to using the glass pane in a JFrame and JApplet.
    11 times | category: [Swing]
    Using HTML in Java Swing Controls
    ON: 2007-08-03 13:27:04
    Have you ever wanted to provide text formatting in a Swing control? Have you ever wanted to have multiple lines of text in a tab? This tutorial will show you how to use the simplicity of HTML to provide flexible and powerful text formatting in Swing controls.
    19 times | category: [Swing]
    Introduction to Swing
    ON: 2007-08-03 13:20:50
    This introduction to using Swing in Java will walk you through the basics of Swing. This covers topics of how to create a window, add controls, position the controls, and handle events from the controls.
    261 times | category: [Swing]
    Native Look and Feel in Java
    ON: 2007-08-03 13:15:03
    By default a Swing application or applet does not have the native look and feel of the operating system. This tutorial shows how to modify your application to use the correct look and feel for the platform.
    11 times | category: [Swing]
    Center a Dialog Box, Frame or Window in Java
    ON: 2007-08-03 13:06:10
    This tutorial looks at how to center a dialog box, frame, or window in Java. You will also learn how to extend the JDialog class to create a self-centering dialog box.
    12 times | category: [Swing]
    JTabbedPane in Windows XP
    ON: 2007-08-03 12:52:10
    In Java 1.5, Sun implemented the Windows XP look and feel for the JTabbedPane. Learn how to modify your JTabbedPane to take advantage of the new Windows XP look and feel.
    18 times | category: [Swing]
    Taking Screenshots in Java
    ON: 2007-08-03 12:51:39
    Have you ever wanted to grab a screenshot from your Java application? Here's a quick tutorial on how to grab a screenshot and save it to a JPEG and PNG file. This shows how to use the Robot class to capture the screen image and the ImageIO API to save it as a JPG and PNG.
    10 times | category: [Swing]
    Swing's new JFormattedTextField component
    ON: 2007-08-03 12:51:00
    Accepting formatted input doesn't have to be difficult with input verifiers and focus listeners. This installment of Magic with Merlin shows you how to use the new JFormattedTextField component to prompt for numbers, dates, and formatted input. The Java 2 Standard Edition (J2SE), version 1.4, adds two new Swing components to the palette of available GUI elements: JSpinner and JFormattedTextField.
    19 times | category: [Swing]
    Intelligent data keeps Swing simple
    ON: 2007-08-03 11:42:48
    This generic Swing architecture eases your UI development by integrating intelligent data with Swing components. You can use the iData architecture to create a central repository of data within your application. By doing so, you'll more fully separate data from presentation and produce code that's cleaner and easier to maintain. This article explains how to use the iData technique to ease complex GUI development.
    10 times | category: [Swing]
    Secure communication between peers: SSL through JSSE
    ON: 2007-08-03 11:06:26
    A core requirement of any non-trivial P2P application is secure communication between peers. While the details of the security depend on how the application will be used and on what it will protect, it's often possible to implement strong, general-purpose security using off-the-shelf technology such as SSL. This article demonstrates how to use SSL (via JSSE) in P2P security.
    32 times | category: [Security]
    A three-pronged solution for identifying users
    ON: 2007-08-03 11:05:15
    The problem of system security starts with discovering the identity of the user on the other end of the communications link. This article discusses three familiar approaches for identifying users, highlights their strengths and weaknesses (alone and in combinations), and provides some examples of each.
    4 times | category: [Security]
    Windows networking
    ON: 2007-08-03 11:02:28
    Setting up a windows network using win 2000, XP and 98.
    6 times | category: [Networking]
    Reading and Parsing XML Files with Enterprise JavaBeans
    ON: 2007-08-03 10:58:54
    A step-by-step tutorial in which we will create a Session EJB which will read a given XML file. So in this tutorial you will learn two things; how to read XML files in Java and how to add this functionality in EJBs. Every step has been explained in detail.
    16 times | category: [Javabeans]
    Building your first Enterprise JavaBean.
    ON: 2007-08-03 10:57:22
    This step by step tutorial will show you how to build a simple Session EJB. It will then deploy this EJB on JBoss Server and call it from a JSP page running on Tomcat. You will learn how to call an EJB running on a separate EJB cotainer from a JSP page running on a different WEB container. Every step has been explained in detail.
    37 times | category: [Javabeans]
    this:2/6 25records  total:132    Start  Previous  Next  Last    goto:

    Category

      Applet Building (2)
      Application Building (3)
      Communication (1)
      Database Related (8)
      Development (12)
      EJB (14)
      Game Programming (2)
      General Java (38)
      Javabeans (4)
      JSP and Servlets (8)
      Miscellaneous (23)
      Networking (1)
      Security (2)
      Swing (13)
      WAP and WML (1)
      XML and Java (0)