Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 3 of 3

Thread: Suggestions for IDE to use

  1. #1
    Junior Member
    Join Date
    Sep 2012
    Posts
    3
    My Mood
    Yeehaw
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Lightbulb Suggestions for IDE to use

    I'm new here and I certainly don't want to upset anyone by being to vague or by being to lengthy, but let me see if I can describe my problem briefly and get some suggestions on 1) a course of study, 2) or a more direct answer about how to solve my problem....

    I'm a novice but I do understand a good bit about the basics of the language. My problem is that I have a bunch of source code files that I want to be able to import into an IDE so that I can figure out what the author was doing by inserting breakpoints and playing with the code. The author of the code has provided the source free and with his blessing, but he has left the project far behind and would not be interested in helping.

    I have installed NetBeans and Eclipse and even JCreator. NetBeans and Eclipse both fail to run the code after importing with a huge number of errors. If there is interest, I can provide additional information on the errors I'm getting, but due to the large number of them, I felt it would not be advisable to try to include them here. I figure I probably screwed up in importing the project and in no small part due to my lack of knowledge about how the whole process of building and compiling a project with a large number of files works. I've also wondered if since the code is a bit dated (2004), that may have something to do with the errors... I just don't know.

    More Info if you like:
    The java code has been compiled by the creator into a Windows executable file. It is a cryptogram solver (written by EOlsen) and runs very fast. (WinDeCrypto). I've written a solver in Perl and have worked extensively modifying a C# program written by a friend. They both work fairly well, but cannot come near the success level and speed of WinDeCrypto. There are things going on with this program that I just can't grasp at my current Java skill level. I'm heavy into solving cryptograms manually, but have become obsessed over the past few years with figuring out machine solving methods.

    Source Code if you like:
    http://www.blisstonia.com/software/D...pto8.5-src.tgz

    There are 18 files in the project directory and 24 files in 5 subdirectories so it's not a small project by any means...

    Again... please don't be offended by my request. I know I've got a long way to go in learning what I need to know and I'm not looking for an easy answer, just some guidance and any help I can get.

    Thanks in advance and I'm hoping I posted this in the right place...

    Doug


  2. #2
    Super Moderator jps's Avatar
    Join Date
    Jul 2012
    Posts
    2,642
    My Mood
    Daring
    Thanks
    90
    Thanked 263 Times in 232 Posts

    Default Re: Suggestions for IDE to use

    Well first thing when dealing with a compiler is once the compiler has found one error, every following error is just a guess. Fixing one error can clear up hundreds of others. Can, not will. So listing them all would be pointless for the most part.

    If I use an ide, it is usually eclipse. It really boils down to what you do and how you do it. This is better than that for this thing, and that is better than this for that thing... so try as many as it takes to make you happy.

    If I was you I would import the src folder from the zip to eclipse and take it one step at a time. Look at the first error and determine what is wrong. Is there a problem finding an import? That can cause multiple errors throughout.
    Imports all good? Move to the next thing. Step through the errors one at a time. If you don't know where to start try to compile and see what eclipse complains about first. If you do not understand the error or how to correct the problem post a question and maybe you can figure it out with a pointer in the right direction.

  3. The Following User Says Thank You to jps For This Useful Post:

    dugglesmack (September 7th, 2012)

  4. #3
    Junior Member
    Join Date
    Sep 2012
    Posts
    3
    My Mood
    Yeehaw
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Re: Suggestions for IDE to use

    Thanks!! I'll try to import the zipped file in Eclipse and see how it goes from there!

Similar Threads

  1. Any suggestions
    By no_more_coffee in forum JDBC & Databases
    Replies: 1
    Last Post: March 28th, 2012, 08:37 AM
  2. JComboBox suggestions/help how can i do this?
    By derekxec in forum AWT / Java Swing
    Replies: 2
    Last Post: August 24th, 2011, 02:58 PM
  3. Suggestions how to do this?
    By aussiemcgr in forum Java Theory & Questions
    Replies: 1
    Last Post: September 2nd, 2010, 12:18 PM