What java editor do you suggest?

What do you think is best? I'm currently using NotePad and JBuilder but I don't really like JBuilder.

You say you use NotePad and JBuilder. Do you like NotePad? If so why not just go to a command line compile and debug, you're almost there already. If not then there are several you can choose from--I actually like Forte. It's free and I have a large enough cpu and memory the piggish model does not bother me.

Similar Messages

  • Which java editor do you use?

    Just curious as to what Java Editors/Ide's you people are using?
    I tried Forte... but since I only have 2 years of programming JAVa under my belt, Forte and other's like it include alot of 'stuffing' that just makes things more confusing.
    I'm currently using JCreator LE....

    JBuilder is good. Yes Forte CE can make things very confusing. There are some other
    IDES like JDeveloper,Eclipse,IDEA etc. You may visit the site www.eclipse.org

  • What code editor do you use with Business Catalyst?

    I am having many issues with Dreamweaver & BC:
    1 - It keeps thinking that I have the trial version, even though I have a license to Creative Cloud and Creative Cloud shows that I have it.
    2 - When I try to use the integrated Business Catalyst palette, it logs me out of the admin console for my BC site. ANNOYING.
    3 - Most importantly, it doesn't put the files to the server successfully, consistently.  I have change my file and re-put the file 5-6 times before it works.  VERY FRUSTRATING!
    After an hour on the phone with Dreamweaver customer support, the issue is still not resolved.
    So, now I ask you all, what code editor are you using in conjunction with Business Catalyst while implementing your Business Catalyst websites?

    Code editors, I used to use editplus until Adobe locked 90% of the FTP programs out there, now I use Sublime 2 with SFTP plugin but it's uber clunky and not so happy with it...

  • What audio editor lets you select a type of sound to remove (e.g. hiss)?

    Hi all, I'm new here and am just in the process of abandoning Windows in favour of a Mac. (I grew up on an Apple ][e and the first Mac FWIW!)
    I am used to Sony Sound Forge and other PC audio editors, and need to choose my program of choice on the Macbook Pro.
    There is one killer feature I need. It's kinda hard to describe, but basically it lets you select a region of audio that you want to 'memorise', and it will then remove any audio that fits its frequency, from the rest of the track. E.g. you can select hiss from a blank part of a track you recorded from an old cassette, and it will remove that hiss from the entire track.
    Is there a (preferably freeware) audio editor that has this specific feature?
    Many thanks!

    Hi //eBoy,
    I've never heard of any program that could memorize a sound and then remove that sound from another recording. Sound is too variable to be able to exactly match the frequency, amplitude, phase and harmonics of a "noise" to invert it and cancel that same "sounding" noise somewhere else.
    Searching here for "remove hiss" the best suggestion appears to be lowering the undesired frequency with a band-stop filter (band equalizer), but of course, if there were any desired sounds with that same frequency, they would be attenuated too.
    Topic : Removing Hiss ( Soundtrack Pro)
    and
    Topic : Removing Hiss (GarageBand '09)
    ivan54

  • What index types do you suggest when you have...

    If you have tables A, B, C and they are all partitioned range by created_date where that is a timestamp
    If nearly all queries can only specify created_date on C only because the B's that belong to A and the C's that belong to B can all be in different partitions relative to their children. So if you have weekly partitions for A, B, C the C's the belong to B and the B's the belong to A can be in different weeks partitions. Now A, B and C all use surrogate keys and there's an index on all of them. You have one to many b/w A->B and one to many b/w B->C where any C has a 1 B parent and that B parent can have one and only one A parent.
    When doing the join you end up doing something like
    select * from A, B, C
    where A.a_id = B.a_id
    and B.b_id = C.b_id
    and C.created_date >sysdate - 1
    The problem is that the indexes on A and B are all global non partitioned as are the indexes on C
    Right now we get partition elimination on C on a good day but when the optimizer decides go to A first we get none. Whenever the optimizer goes to A it often does partition range all scans because there is no partition key on A or B
    used in the query.
    How can we get the query plan to reliably use C first so that partition elimination is always guaranteed.
    Currently our thinking is to use /*+ ORDERED */ where the from is C, B, A
    Unfortunately the programs cannot introduce bind variables so where we can use Baselines to manage the plan for a given sql_id the only way we can do this is to use CURSOR_SHARING=force via login trigger on their session. This forces the
    introduction of bind variables in to the query but Their queries are formed dynamically from a GUI screen that optionally can provide different parameters. So not only do you have N's items in an IN clause to worry about you also have other optional parameters that can show up in the query depending on whether they are used or not.
    Q. Has anybody solved this problem by wrapping the query in a procedure so that you can pin the plan to the procedure where all that differs in the procedure is how the arguments are specified? This seems tedius to me because the procedure would have to take comma separate lists of values whenever you want to pass the values to be used in an IN clause.
    Only if you wrap a query that can have optional parameters and N values for any parameter can you manage the plan for that procedure thru a baseline otherwise you simply end up with too many plans to manage because of the different combinations of the size of the IN clauses and the optional parameters that can be specified.
    When joining b/w A, B, C etc what indexes should be partitioned?
    The typical query uses column values on A to limit the C's associated with the B's that are associated with the A's that match those columns. Those fields on A have global indexes so often when the plan is one where it starts at A first and works it's way down it has to consider far too many rows from A that are unrelated to the eventual partition narrowed to from the C.created_date predicate.
    Edited by: steffi on Mar 8, 2011 8:56 PM
    Edited by: steffi on Mar 8, 2011 8:57 PM
    Edited by: steffi on Mar 8, 2011 8:58 PM

    Dear Steffi,
    The problem is that the indexes on A and B are all global non partitioned as are the indexes on CWhy are you saying that this is a problem?
    What are the definition of your primary index on A, B, and C?
    You can eventually add the partition key (created_date) to those primary keys and hence locally partition their corresponding PK indexes
    As far as you wrote that there is no relation ship between A.created_date, B.created_date a and C.created_date, then I beleive you can't benefit from the partition wise join because in such case you need to join A,B and C on the same partition key which is created_date
    Currently our thinking is to use /*+ ORDERED */ where the from is C, B, AUsing /*+ ORDERED */ is not a guarantee that the Oracle Optimiser will obey this hint.
    Use the hint /*+ Leading(C) */ instaedYou know that when you wrap your query into a static PL/SQL procedure you don't have to care then about the use bind variable. It will be used;
    that is how static PL/SQL wroks. But when you are using dynamic sql into this PL/SQL procedure you need in this case to take care about using bind variable.
    The auto-binding trick which is represented by the cursor_sharing=force (or similar) is not highly recommended as far as there exist side effects like the one that cames to my mind now which is when you have function based indexes based on litteral (for example a function based index like substr(a,2,4)) will be rewritten, when cursor_sharing is set to force, to be substr(a, :SYS_B0, :SYS_B1) which will not mach your original query and will not use the function based index anymore
    Best Regards
    Mohamed Houri

  • What application(s) would you suggest?

    Hi!
    I am totally new to dynamic web pages. I see that many applications exist but I am unable to find which one could help me achieve what I want for my web site.
    Here is my situation. I have a list of local farmers and food producers and I want my web site visitors to be able to search that database with the options that suit them the most, regarding their needs. My list is in Excel and I am able to sort the data in many useful ways using Pivot tables. I would like to find a way to get the same kind of sorting in my web page.
    My web site is promoting local farmers and food producers. I would like my visitors to be able to search my database in two ways. First, choose "including" criteria by clicking a check box (only organic products AND only products avalaible directly at the farm, for example). Then, sort the results by product category, or by producer, or by city...
    Any idea how I could do that? What application I could use? If you give me a hint, I could then search the Web to learn how to do
    Thanks!

    You would be looking at using a database, something like mySQL and a server side scripting like PHP.
    As far as I know, there really isn't anything out there that would allow you to do this type of thing in a dialogue window driven "click here for x setting" type of interface like DW's Design View. You're pretty much limited to hand coding.
    Both of those technologies are very worthwhile to learn though and what you want to do isn't terribly complicated for them.

  • Which cards and card readers would you suggest?

    Hello!
    I am very new to JavaCard development and I have just downloaded Java Card Development Kit.
    To develop application and test it I think the development kit is enough. But when application is ready to be deployed which card and what card readers would you suggests that work reliable. Where to find them?
    Thank you very much!

    I suggest Sdi010 or scr331-DI from SCMmicro.com.

  • What external drive do you need to read discs

    What external drive do you suggest purchasing to read discs

    Assuming you are referring to a late 2012 or 2013 iMac that does not included a DVD drive. Almost any external USB DVD drive will work, Apple offers the external SuperDrive however there are a multitude of alternatives. If you choose to use Apple's solution, in the US online store it is availalble:
    http://store.apple.com/us/product/MD564ZM/A/apple-usb-superdrive?fnode=5f
    If you have a Mac or PC with a DVD drive that is on the same network as your iMac you can also use Remote Disc which Apple explains in the DVD or CD sharing: Using Remote Disc article located at:
    http://support.apple.com/kb/HT5287?viewlocale=en_US

  • What java IDE is the best one?

    What java IDE is best ?
    What java IDE are you using?

    I agree that you should decide on what you want your IDE to do.
    How important is a GUI builder?
    Do you need support for, say Java Server Faces?
    Do you frequently work with XML files?
    etc, etc.
    That being sad: IntelliJ Idea ist the best in many areas, the most important one being usability. This sounds like a small deal, but as each and every feature is very-well implemented, it really boosts productivity.
    Currently it falls short in some areas, like support for Java Server Faces.
    "dingfelder": Where did you get these numbers from? Last I know, Idea was the third most used IDE.
    Also "quantity of users" is as good a criteria as the checksum of it's installer file.
    There's a saying in german that literally translates too "Eat sh*t - milliions of flies can't err." Sorry for the french, but you get the Idea I hope.
    Oh no, I can't believe that I posted on yet another "what IDE is best" thread. And even more so in a forum that should deal with other stuff.
    David001, I hope you're not simply a troll.

  • HI,  I need to jre 1.6 update 26 on my mac system to make some aaplication work. However latest available is jre 1.6 update 29. Could you suggest how I can get jre 1.6 update 26? I tried downloading older version on java. COuldn't find it on your site.

    HI,  I need to jre 1.6 update 26 on my mac system to make some aaplication work. However latest available is jre 1.6 update 29. Could you suggest how I can get jre 1.6 update 26? I tried downloading older version on java. COuldn't find it on your site.

    What are you missing?
    I inherited this app and signing the third party jars is how it was setup, I was wondering the same thing too, why was it necessary to sign the third party jars?
    The applet runs in either JRE 1.6.0_13 or JRE 1.6.0_27 depending on the other Java apps the user uses. JRE 1.6.0_13 does not have the mixed code security (so it is like is disable), but JRE 1.6.0_27 does have the mixed code security and the applet will not launch with mixed code security enable, so we have to disable it. With all the hacking going on in the last two years, is important to improve security; so this is a must.
    Yes, I always clear up the cache.
    Any idea on how to resolve this problem?

  • What kind of antivirus do you suggest for mac OS X Maverics?

    What kind of antivirus do you suggest for OS X Maverics?

    OS X already includes everything it needs to protect itself from viruses and malware. Keep it that way with software updates from Apple.
    A much better question is "how should I protect my Mac":
    Never install any product that claims to "speed up", "clean up", "optimize", or "accelerate" your Mac. Without exception, they will do the opposite.
    Never install pirated or "cracked" software, software obtained from dubious websites, or other questionable sources. Illegally obtained software is almost certain to contain malware.
    Don’t supply your password in response to a popup window requesting it, unless you know what it is and the reason your credentials are required.
    Don’t open email attachments from email addresses that you do not recognize, or click links contained in an email:
    Most of these are scams that direct you to fraudulent sites that attempt to convince you to disclose personal information.
    Such "phishing" attempts are the 21st century equivalent of a social exploit that has existed since the dawn of civilization. Don’t fall for it.
    Apple will never ask you to reveal personal information in an email. If you receive an unexpected email from Apple saying your account will be closed unless you take immediate action, just ignore it. If your iTunes or App Store account becomes disabled for valid reasons, you will know when you try to buy something or log in to this support site, and are unable to.
    Don’t install browser extensions unless you understand their purpose. Go to the Safari menu > Preferences > Extensions. If you see any extensions that you do not recognize or understand, simply click the Uninstall button and they will be gone.
    Don’t install Java unless you are certain that you need it:
    Java, a non-Apple product, is a potential vector for malware. If you are required to use Java, be mindful of that possibility.
    Disable Java in Safari > Preferences > Security.
    Despite its name JavaScript is unrelated to Java. No malware can infect your Mac through JavaScript. It’s OK to leave it enabled.
    Block browser popups: Safari menu > Preferences > Security > and check "Block popup windows":
    Popup windows are useful and required for some websites, but popups have devolved to become a common means to deliver targeted advertising that you probably do not want.
    Popups themselves cannot infect your Mac, but many contain resource-hungry code that will slow down Internet browsing.
    If you ever see a popup indicating it detected registry errors, that your Mac is infected with some ick, or that you won some prize, it is 100% fraudulent. Ignore it.
    Ignore hyperventilating popular media outlets that thrive by promoting fear and discord with entertainment products arrogantly presented as "news". Learn what real threats actually exist and how to arm yourself against them:
    The most serious threat to your data security is phishing. To date, most of these attempts have been pathetic and are easily recognized, but that is likely to change in the future as criminals become more clever.
    OS X viruses do not exist, but intentionally malicious or poorly written code, created by either nefarious or inept individuals, is nothing new.
    Never install something without first knowing what it is, what it does, how it works, and how to get rid of it when you don’t want it any more.
    If you elect to use "anti-virus" software, familiarize yourself with its limitations and potential to cause adverse effects, and apply the principle immediately preceding this one.
    Most such utilities will only slow down and destabilize your Mac while they look for viruses that do not exist, conveying no benefit whatsoever - other than to make you "feel good" about security, when you should actually be exercising sound judgment, derived from accurate knowledge, based on verifiable facts.
    Do install updates from Apple as they become available. No one knows more about Macs and how to protect them than the company that builds them.
    Summary: Use common sense and caution when you use your Mac, just like you would in any social context. There is no product, utility, or magic talisman that can protect you from all the evils of mankind.

  • What editor do you use?

    I'm just curious as to what editors people use to edit their java programs on Windows...

    Why do some people always have to try and be so smart?Maybe because they're seen noobs like you ask this tired old question a thousand times, and they're tired of answering it.
    Maybe because they prefer people who show enough initiative to at least attempt to use the (admittedly) poor search capability that this forum provides.
    Finding out what editor people use is not a matter of
    life or death for me; I was simply curious, which is
    why I asked...if you do not feel like giving an
    answer, then don't, but please do not try be a smart
    alec...And you need to understand that you don't get to decide who answers and what they say. You have to be prepared for whatever answers you get here, even if you don't particularly care for them. Toughen up.
    http://www.catb.org/~esr/faqs/smart-questions.html
    %

  • What do you suggest me for task "please comment up all database tables"

    I have in Oracle 10g database in one schema ca 600 ("business") tables created. Most of those tables don't have comments.
    I don't understands most of the tables, and no one does. Can you give me some hints, how i should start to comment those tables?
    I just want to put firstly comments to tables, later i will comment columns.
    I understand that some tables are with mandatory data to the System, something like table ala "SystemRights" would sound to be with mandatory 3 rows that are needed for System to run up. some tables doesn't contains mandatory data for the System, like ala "UserOptions" which sounds like it contains data that User has inserted for herself, so this data is not important for the System. I could maybe distinguish between tables other way, maybe some other hints are important to clarify the purpose of the table.
    Can you suggest something helpful how i should do the commenting of those 600 tables?
    If you are amazes that there doesn't exist not much persons who could know the porpouse of the tables, then you shouldn't be amazed, take this as reality.
    I won't dig into Java code that uses those tables, i believe there wont be much comments either anyway.

    Should i do so:
    1. run query to get table listing:
    SELECT 'select * from ' || t.Table_Name t, c.Comments, COUNT(*) Over() Cnt
    FROM User_Tables t, User_Tab_Comments c
    WHERE c.Table_Name = t.Table_Name
    ORDER BY t.Table_Name;2. From table list take one table into attention.
    3. Run "select * from" to see data of the table.
    4. Now look the data and look the table name and try to figure out what the data represents.
    5. Then open table definition in Tool/IDE to see if table contains FK-columns. Open the tables pointing by FK-keys and to light analyzing of them.
    6. Now look the data of the table again and figure out the porpouse of the table and write it down as table comment.

  • I have read up on all about crashes and i cant even open it in safe mode :( i have tried deleting it and reinstalling it but the problem still persists. What would you suggest i do and is there any way i canget hold of firefox 6 for mac?

    i have read up on all about crashes and i cant even open it in safe mode :( i have tried deleting it and reinstalling it but the problem still persists. What would you suggest i do and is there any way i canget hold of firefox 6 for mac?

    Does the regular Firefox 8 release version work or does the version crash as well?
    *Firefox 8.0.x: http://www.mozilla.com/en-US/firefox/all.html
    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    *https://support.mozilla.com/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins" in case there are still problems.
    If that new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • What other videos and books are there? that you suggest. for step by step . Jeannette

    What other videos and books are there? that you suggest. for step by step .
    Jeannette

    The various Lynda.com video tutorials are very good, but you have to pay for a description.  The Photoshop User TV podcasts are excellent; there are hundreds of them, and they are free.  They are also what the iPad was invented for.
    The 'You suck at Photoshop' videos on YouTube are both very funny and very instructive. 
    The Scott Kelby books are very good for folk starting out.  The Martin Evening, and the Martin Evening/Jeff Schewe books are as good as they get from a photography point of view.  The Steve Caplin books are the best Photoshop books once you get into it, but Scott Kelby and Matt Kloskowski do some great medium to advanced books.  Matt's Compositing Secrets is excellent, and was Amazon's best Photoshop book for a while.

Maybe you are looking for

  • OIM 9.1.0.2 - SAP UM Integration

    Hi Gurus, IHAC who have facing the following situation during SAP UM provisioning: When customer does a provisioning request for SAP UM, the provisioning is successful completed. Some of the requested roles are Role Master (Primary). This roles adds

  • IPod 5.5G Video, 30GB, No Sound Audio, Play/Pause Won't Shut Down, etc.

    Even though I have marked this topic as a question, it is more of a heads up for those having problems with Sound and Audio on the 5th Gen (Video) iPods. I was having audio problems like many others are describing and took it upon myself to look into

  • TCP/IP instrumented debugging with Blackfin EZ-kit

    I have been evaluating the LabVIEW for Blackfin with a BF537 EZ-Kit the last few days...so far, I have been able to get all the example programs to run using the non-instrumented USB debugger interface. I have run the Web Server Buttons example, and

  • Ipad intermittent charging

    Hi I have an ipad and when ever I plug the charger in the connection goes on and off slowing down the charging time. Any suggestions?

  • How to install Solaris 8 as the third OS?

    Hi all I'll appreciate anyone who could guide me how to install Solaris 8 in my PC which runs on an Intel Pentium III Currently, I've installed Windows 2000 on the first partition, Red Hat 7.2 on the second partition. Only the first partition is prim