CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Xeel

Page 1 of 23 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    5
    Views
    5,316

    Re: Help with trapezoidal rule java

    That's because the error cause is that the input file is not found (Java exceptions are pretty descriptive, btw). Check your input file path.
  2. Replies
    2
    Views
    3,533

    Re: ZipEntry to java.io.File

    The new File(currentFile) part just creates a new file object in memory, thus the System.out.println(curr.toString()); prints its supposed location (this does not mean that the file exists...
  3. Re: How to create a unmodifiable/read-only list in Java?

    http://docs.oracle.com/javase/7/docs/api/java/util/Collections.html#unmodifiableList%28java.util.List%29
  4. Replies
    1
    Views
    3,115

    Re: Help with JQuery, SVG Fallback for IE8

    1. This is Java forum not JS. All JS questions are posted here: http://forums.codeguru.com/forumdisplay.php?8-Scripting-Client-Side
    2. Yes if you click the image you'll invoke href contents, this is...
  5. Replies
    4
    Views
    8,114

    Re: How to make three arrays relate to each other

    I was going to suggest this from the beginning but the case of 2 or more equal numbers can create a problem that would remove the index uniqueness.

    Say we have 2 values which correspond to max of...
  6. Replies
    1
    Views
    1,989

    Re: what about programming android phones?

    Use Skype =)
  7. Replies
    4
    Views
    8,114

    Re: How to make three arrays relate to each other

    Use HashMap<String,Double[]> where the key is the element name and value would correspond to a Double array consisting of fat and protein counts. The only limitation in this approach is that you...
  8. Replies
    1
    Views
    2,234

    Re: Override/Extend EJB3.x

    I'm still looking for a solution to this one...
  9. Replies
    1
    Views
    2,021

    Re: Localized JAVA application

    What do you mean by "fully functional java application for my research on creating an internationalization utility"? Localizations are topically done via properties files, manually. You set the...
  10. Replies
    2
    Views
    3,750

    Re: java game programming for beginners

    http://lmgtfy.com/?q=java+games+developing+tutorial
  11. Re: Need help running java restful web service as a Linux service

    Have you tried publishing the web service on some java server (Tomcat for ex.) and run this server as a Linux service?
  12. Replies
    1
    Views
    1,143

    Re: Help connecting java GUI to dabase

    http://lmgtfy.com/?q=java+sql+tutorial =)
  13. Replies
    1
    Views
    6,782

    Re: Servlet throws error on compilation

    It's impossible to determine the cause with this limited info. Spring and Hibernate are giants each with its own configs and libraries, can be hundreds of reasons. Still by looking at the exception 2...
  14. Re: How To Enter Name with Whitespaces in a String Variable

    1. Please use code tags! http://forums.codeguru.com/misc.php?do=bbcode#code
    2. Scanner's next() method reads the next token delimited by default delimiter which is space. To read the whole line use...
  15. Replies
    1
    Views
    2,234

    Override/Extend EJB3.x

    Hello everyone,

    I've been having this idea for some time. I doubt it's new but still I've found no related info after an extended search.

    The idea is to automate database regs logical status...
  16. Replies
    1
    Views
    1,165

    Re: Help with java class, subclass

    Pretty enough to complete the task: http://lmgtfy.com/?q=java+interface+explained

    Recommended structure:
    - interface Engine (here go the methods declarations)
    - class (can be abstract) Motor as...
  17. Replies
    2
    Views
    3,771

    Re: help with overloading code

    http://javarevisited.blogspot.mx/2011/09/variable-argument-in-java5-varargs.html ;)
  18. Replies
    2
    Views
    955

    Re: java 32bit app under 64bit env

    Thanks. So if I understand correctly the runtime env is responsable for managing the heap space and the rest of memory regardless of the particular app's bytecode, right?

    Update:
    Ok, that was a...
  19. Replies
    2
    Views
    955

    java 32bit app under 64bit env

    Hello,

    I've got a few questions I couldn't find a straight answer to, maybe because the quetions are wrong, but I'm not sure how should I put it then. Just do not laugh :D

    1. Is there any...
  20. Replies
    11
    Views
    3,396

    Re: Running the code after catching an error

    Considering your particular requirements the only safe way to do this in the "optimized way" is the way I sent in the previous post plus checking id for existence in your local db. You could modify...
  21. Replies
    11
    Views
    3,396

    Re: Running the code after catching an error

    If you are sure that all the data is new you could call for a sequence function instead of assigning ids manually. Sequences are defined differently depending on DB though, so you should read the...
  22. Replies
    2
    Views
    4,758

    Re: plz help me in data structures projects

    keang, why don't you choose a project you like from this small list and make yourself usefull? =)))
    plz, plz, plz, pretty-pretty pllllzzzz.... xDDD

    Sorry, couldn't resist...
  23. Replies
    2
    Views
    1,282

    Re: How should I edit this code?

    It's impossible to tell what to change to make it look as you want: too few lines of code, no style definitions, etc. Also the code in your post IS the left sidebar. To make changes you're looking...
  24. Replies
    1
    Views
    911

    Re: Writing to DTD Document

    1. Too little info in your post to help you directly.
    2. http://lmgtfy.com/?q=writing+your+own+DTD
  25. Replies
    2
    Views
    2,472

    Re: question regarding infinite session time out

    1. One approach would be to use cookies for public users. So if a cookie exists just log the user in automatically. While internal users won't have their cookies and will submit to your session...
Results 1 to 25 of 574
Page 1 of 23 1 2 3 4





Click Here to Expand Forum to Full Width

Featured