• home
  • forum
  • my
  • kt
  • download
  • this:9/9 25records  total:216    start  Previous  Next  Last    goto:
    Improve the performance of your Java code
    ON: 2007-08-02 09:42:40
    Many algorithms are expressed most concisely as tail-recursive methods. Compilers can automatically transform such methods into loops and thereby improve program performance, but this transformation is not required by the Java language specification, so not all JVMs will perform it. This means that tail-recursive methods in the Java language can result in unexpectedly large memory usage. This article demonstrates that dynamic compilation maintains the language's semantics while static compilation often doesn't. Learn why this matters and get a bit of code to help you determine whether your just-in-time (JIT) compiler can transform tail recursion on code while preserving semantics.
    22 times | category: [Development]
    How to lock down your Java code
    ON: 2007-08-02 09:41:02
    You inevitably spend some part of your week crunching code that you didn't write, and for which you may not have the source. This beginner's guide to opening up and locking down Java code walks you through the essentials of disassembling, decompiling, and obfuscating Java code, using examples from popular tools such as Mocha, HoseMocha, jmangle, and JODE.
    55 times | category: [Development]
    Database Metadata with JDBC
    ON: 2007-08-01 10:42:48
    The goal of this tutorial is to show you how to use JDBCâ
    708 times | category: [Database Related]
    Connecting to a MySQL Database using Connector/J JDBC Driver.
    ON: 2007-08-01 10:41:08
    A tutorial on how to connect to a MySQL Database using Connector/J JDBC Driver. Explains what are database URLs? Why and how to specify JDBC driver names? Then moves on to write a simple Java program to connect to a MySQL database server. Explains all the code in detail.
    157 times | category: [Database Related]
    Creating JDBC SQL Statements. Displaying Records from a MySQL Database.
    ON: 2007-08-01 10:33:46
    A tutorial on how to create and execute JDBC SQL Statements and display records from a table in a MySQL Database. Also covers topics like creating databases and tables in MySQL. All code is explained in detail.
    2039 times | category: [Database Related]
    Installing and Configuring MySQL Database and Connector/J JDBC Driver
    ON: 2007-08-01 10:28:19
    A tutorial on obtaining, installing and configuring MySQL Database and Connector/J JDBC Driver for use on Microsoft Windows. Advanced topics covered include installing MySQL as a Windows service and configuring MySQL and Connector/J JDBC Driver to use named pipes.
    1775 times | category: [Database Related]
    Counting Records in MySQL by JSP
    ON: 2007-08-01 10:27:34
    This code source displays count of records in MySQL. We are using a SQL statement. You can easily modify the code to use in different languages. But this code can be used for JSP with MySQL. We will use Connector/J driver to connect database.
    39 times | category: [Database Related]
    A Brief Introduction to JDBC.
    ON: 2007-08-01 10:26:31
    This article provides a brief introduction to JDBC. Explains what is JDBC and how it can be used to access RDBMS. Provides a brief overview of JDBC architecture.
    31 times | category: [Database Related]
    JDBC wrapper: A quick data access solution for simple programs
    ON: 2007-08-01 10:25:45
    JDBC provides a powerful, comprehensive interface for accessing databases from Java programs. For smaller projects, JDBC can seem overwhelming, driving some programmers to avoid using a database altogether. This article describes a simple wrapper library that makes basic database usage a snap. You'll find yourself wanting to use JDBC for every program you write.
    48 times | category: [Database Related]
    What's new in JDBC 3.0
    ON: 2007-08-01 10:24:52
    The Java Database Connectivity (JDBC) API has emerged as a key part of the Java 2 Standard Edition (J2SE) and Java 2 Enterprise Edition (J2EE) platforms. It is the primary standards-based mechanism for the Java language to programmatically access relational databases, so when a new version of the specification is released by the Java Community Process, developers are bound to be interested. This article summarizes the key new features as outlined in Sun Microsystems' recently released Proposed Final Draft 3.0 of the JDBC specification.
    41 times | category: [Database Related]
    JMS 1.1 simplifies messaging with unified domains
    ON: 2007-08-01 10:18:26
    JMS 1.1 unifies point-to-point and publish/subscribe domains, allowing developers to create more general, reusable messaging code. 1.0.2 API provides little support for an application using both domains together, and no support for developing reusable frameworks that can work equally well with destinations of either domain. JMS 1.1 fixes this shortcoming by unifying these domains. This article explores how much easier it is to develop JMS client code using the latest version.
    40 times | category: [Communication]
    Developing and distributing Java applications for the client side
    ON: 2007-08-01 10:12:24
    Java Web Start, a new technology to assist the development of client-side Java applications, is unique in that it frees you from concerning yourself with how the client is launched, either from a Web browser or from the desktop. Additionally, this technology provides an encompassing deployment scheme that enables a Web server to independently distribute and update client code. This article introduces this enterprising new technology, which is scheduled to be integrated in the final release of Java 1.4, describing its implementation from both the developer and the user perspective.
    53 times | category: [Application Building]
    Introducing inheritance to PropertyResourceBundles
    ON: 2007-08-01 10:11:35
    Creating a fully internationalized Java application using PropertyResourceBundles can present some interesting design and implementation problems, including concern over how to modularize the bundles to be used in different areas of the application. This article explores a solution based on PropertyResourceBundles, which should simplify the design and implementation problems, while promoting reuse of existing bundles. Article includes code snippets.
    230 times | category: [Application Building]
    Visual Application Builder
    ON: 2007-08-01 10:06:14
    The Visual Application Builder is a set of WebSphere Studio plug-ins that allow even non-expert programmers to quickly develop browser-based/J2EE applications and application templates that target various devices. The model-based Rapid Application Development (RAD) environment allows easy building of form-based applications that interface with data from various sources, such as RDB and Web services. It allows the use of one project to generate code for various target platforms and for new technologies that will evolve. Updated for WebSphere Studio 5.1 with WSWB 2.1 look and feel; contains database connection filtering, undo support, and several bug fixes.
    26 times | category: [Application Building]
    Out of the Sandbox
    ON: 2007-08-01 10:04:06
    Get your applet out of the sandbox. This guide takes you through the steps involved in creating digitally signed applets. These trusted applets can overcome the restrictions placed by the sandbox such accessing local files and folders.
    57 times | category: [Applet Building]
    Step by Step Java Tutorial
    ON: 2007-08-01 10:01:53
    This step-by-step tutorial will take you through the process of building applets. Using a Learn-By-Example method, within a few minutes you will be able to display things on the screen, a few minutes later you are able to use a GUI and after that you will see how to interact with the user. Topics include: Graphical Interface, HelloWorld Example, Drawing Shapes and using Colors, Displaying Images, Using GUI components, and The Layout Managers
    51 times | category: [Applet Building]
    this:9/9 25records  total:216    start  Previous  Next  Last    goto:

    Category

      Applet Building (9)
      Application Building (9)
      Communication (1)
      Database Related (14)
      Development (13)
      EJB (14)
      Game Programming (5)
      General Java (71)
      Javabeans (4)
      JSP and Servlets (25)
      Miscellaneous (28)
      Networking (1)
      Security (3)
      Swing (13)
      WAP and WML (2)
      XML and Java (4)