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 dencom 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 Batlin

  1. Batlin

    How to append information to an existing file

    The second argument to the FileOutputStream constructor, which I assume you're using, is a flag specifying whether to append to the file. (see http://java.sun.com/j2se/1.5.0/docs/api/java/io/FileOutputStream.html) So in your case, you might have: FileOutputStream out = new FileOutputStream(new...
  2. Batlin

    vector.clear() problem

    Hey, you've probably already figured this out, but it looks like you're covering the same items when you do your search. In a three-element vector you would compare: a == b, a == c. Because you're starting the inner loop from zero, you're comparing: a == a, a == b, a == c, b == a, b == b, b ==...

Part and Inventory Search

Back
Top