Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by no137

  1. no137

    Can I use jsp tag libs within java program code?

    Can I use jsp tag libs within a regular java program code? If so, how?
  2. no137

    View directory through a web service question

    Using Axis 1.0 in Tomcat 4.1.12, how can I create a web service that can list the contents of a directory that is not in the webapp directory? Example: if my tomcat directory is c:\tomcat and the directory I want to list is d:\somedir.
  3. no137

    How can I limit the number of recordsets returned?

    Newbie Question: How can I limit the number of recordsets returned from a select statement like "select * from table"? I only want the first 50 records. Thanks Fred
  4. no137

    How can I change this thread code to pass params

    How can I change this thread code to pass params? import threading class TaskThread(threading.Thread): """Thread that executes a task every N seconds""" def __init__(self): threading.Thread.__init__(self) self._finished =...
  5. no137

    Java 1.4 SocketChannel question

    Using J2SE 1.4, how can you read a file using FileInputStream and output the bytes thru SocketChannel? Thanks Fred
  6. no137

    How can I process large binary files(100MB+)?

    How can I process large binary files(100MB+)? I have this code from javaworld site. I want to process large binary files without running out of memory. I want to move large files as a java objects from one directory to another. But with this code, I am getting memory errors on very large...
  7. no137

    How can I trigger an event went directory contents change?

    How can I trigger an event when files in a filesystem directory changes(either file added or removed)? Please help. Thanks Mike

Part and Inventory Search

Back
Top