Mostly used IDE for Java

Hi,
Which IDE is used by most of the IT Firms
Regards,
Ram.

jwenting wrote:
kajbj wrote:
Michael_Dunn wrote:
almost like asking what's the most widely used tampon.
who cares, so long as you're comfortable with it.Except that many companies forces you to use a certain IDE.Not ones I've worked. They're happy to let you use your own as long as they don't have to pay for it.Well, based on my knowledge, some do. I've worked for two financial institutions, and they were real sticklers for using the approved tools, and only the approved tools. Get caught using anything else more than a couple of times, and you'd probably be looking at the street.
Other companies I've worked for, didn't care much, as long as it didn't cost them too much (if anything) in licenses.

Similar Messages

  • How to start to work on MDM JAVA API by using webdynpro for java

    Hi all
    I have basic idea on MDM business package thru portal by using standard iViews.
    now i am planning to work on MDM JAVA APIs by using Webdynpro for Java as UI.
    1) can you please share the required documents on the same. how to start working on this by using MDM JAVA APIs in webdynpro for java
    2) what are the JARs files are required and how to integrate those jar files into webdynpro for java application.
    3)  is there any SDN help on MDM JAVA API with webdynpro for java? . can you please send the link on the same.
    4) can you please help by providing sample code on how to use JAVA APIs for retrieving,deleting,inserting and Updating the data in the database.
    if anybody helps on the same then it is the great help to me.
    points are always rewardable...
    Regards
    Suresh babu

    Hi Suresh,
    You can have the MDM JAVA API javadocs from the link
    http://help.sap.com/javadocs/MDM/SP06P2/index.html
    There you can see a package named com.sap.mdm.examples.The classes in it contains some examples using which you can start understanding the code.
    You need to have MDM JAR files for it. And these JAR files to be used at build time can be added to the project thru :-
    Right click on project-> properties->Java Build Path - > Add external JARs
    At run time you can add them the reference in
    Right click on project-> properties->web dynpro references->library reference.
    Thanks
    Namrata

  • Urgent: who ever use Forte for java ---thanks a lot

    who ever use forte for jave :
    i have some problems..
    1. how to config forte for jave to import the libs which i have programmed and stored in .jar file.
    2. how to setup the application sever and tomcat in Forte for java.
    3. how to use the EJB(which i have programmed) in forte for java.
    before i use JBuilder and i am quite new to Forte for java
    thanks a lot .

    2. how to setup the application sever and tomcat in Forte for java.Tomcat is built into Forte. Once you create web module, you can configure the tomcat server.
    3. how to use the EJB(which i have programmed) in forte for java.What do you mean with "use". You have to deploy them to your EJB container in order to be able to "use" them.
    If you are looking for support for a specific container:
    I think support for the reference implemenation is already built in.
    And I have seen a module to support Oracle's IAS somewhere on the Forte homepage
    Docs on NetBeans/Forte
    http://www.netbeans.org/about/books/index.html
    http://www.netbeans.org/ide/docs/index.html
    http://forte.sun.com/
    Thomas

  • Get IDE for Java?

    Where I can get a free IDE for Java which isn't written in Java or scripts (I have tried some written in Java, but they ate too much memory.)

    After reading your orginal question I did some more investigating on IDE for linux. In my previous experiance I haven't had much luck installing them, running them once installed, keeping them running once running. These seem to be the quality of Java IDEs written as freeware for Linux and not Java or Linux as a whole. After you asked your question I decided to give one more IDE a try. Jedit.
    http://www.jedit.org/
    The RPM installed right, the first time without intervention from me.
    It supports plug-ins.
    It does network installs of these plug-ins which was really cool and effortless
    It does all the things you asked for in your previous post
    It fails to meet one of your requirements... its written in java.
    however it is running on my linux box now, while I'm streaming mp3s and hosting a low volume web site, running Kde.
    My system is a AMD 950 with 256 meg RamRunning Redhat 7.2
    I haven't written much in the way of applications useing jEdit but it does look promissing.
    Ron_W

  • Problem in Uploading excel file using WebDynpro for Java

    Hi  All
    I have followed for Uploading excel file using WebDynpro for Java added by  Tulasi Palnati
    I done all, but I'm getting 500 Exception please contact u r system admin meag  at run time also  Jxl/Workbook class not found msag  but i downloaded Jxl.jar file and  there is no error signals  in coding part. How can I solve the Problem.
    Thanks
    Polaka

    Please ask the people in the Web Dynpro Java forum for a solution.

  • Reading/Writing .xlsx files using Webdynpro for Java

    Dear All
    I have a requirement to read/write excel files in .xlsx format. I am good in doing it with .xls format using jxl.jar. The jxl.jar doesn't support .xlsx format. Kindly help me in understanding how do I need to proceed on reading/writing .xlsx files using Webdynpro for Java.
    Thanks and Regards
    Ramamoorthy D

    i am using jdk 1.6.22 and IBM WebSphere
    when i use poi-3.6-20091214.jar and poi-ooxml-3.6-20091214.jar  to read .xlsx file. but i am getting following errors
    The project was not built since its classpath is incomplete. Cannot find the class
    file for java.lang.Iterable. Fix the classpath then try rebuilding this project.
    This compilation unit indirectly references the missing type java.lang.Iterable
    (typically some required class file is referencing a type outside the classpath)
    how can i resolve it
    here is the code that i have used
    public class HomeAction extends DispatchAction {
         public ActionForward addpage(
                             ActionMapping mapping,
                             ActionForm form,
                             HttpServletRequest request,
                             HttpServletResponse response)
                             throws Exception {     
                             String name = "C:/Documents and Settings/bharath/Desktop/Book1.xlsx";
               FileInputStream fis = null;
               try {
                   Object workbook = null;
                    fis = new FileInputStream(name);
                    XSSFWorkbook wb = new XSSFWorkbook(fis);
                    XSSFSheet sheet = (XSSFSheet) wb.getSheetAt(0);
                    Iterator rows = sheet.rowIterator();
                    int number=sheet.getLastRowNum();
                    System.out.println(" number of rows"+ number);
                    while (rows.hasNext())
                        XSSFRow row = ((XSSFRow) rows.next());
                        Iterator cells = row.cellIterator();
                        while(cells.hasNext())
                    XSSFCell cell = (XSSFCell) cells.next();
                    String Value=cell.getStringCellValue();
                    System.out.println(Value);
               } catch (IOException e) {
                    e.printStackTrace();
               } finally {
                    if (fis != null) {
                         fis.close();
                return mapping.findForward("returnjsp");

  • Accessing knowledge management documents using webdynpro for java

    Dear all,
    iam having some documnets in KNLOWLEDGE MANAGEMENT documents folder in portal using webdynpro for java clicking on a link means perner(employee no) i should get that perpicular employee number documents.
    examples documents are stored like this in knowledege management folder 20016319.pdf  ,  20016397.pdf  ,  20016398.
    how to access those employee using webdynpro for java for perticular employee number if i want 20016319
    Send me the code for above requirement and where i have to wrirte that code exactly
    Regards

    Dear Kishore,
    To get the Employee ID you have to create a Adaptive RFC Model (call BAPI) which will return you the employee pernr, for this
    1. Create a model using  : BAPI_EMPLOYEE_GETDATA
    2. Get User ID using the code
    public java.lang.String getUserID( )
        //@@begin getUserID()
         String userID = new String();
              try
                    // getting Logged in userid
                   IWDClientUser myUser = WDClientUser.getCurrentUser();
                   userID = myUser.toString().substring(19).trim();
                   StringTokenizer filterdUID = new StringTokenizer(userID,")");
                   userID = filterdUID.nextToken();
              catch (WDUMException e)
                   e.printStackTrace();
                   return userID;
        //@@end
    3. Execute the BAPI
    public java.lang.String getEmployeeID( java.lang.String userID )
        //@@begin getEmployeeID()
         String employeeID = new String();
              Bapi_Employee_Getdata_Input employeeData = new Bapi_Employee_Getdata_Input();
              Bapi_Employee_Getdata_Output outData = new Bapi_Employee_Getdata_Output();
              Bapip0105B comm = new Bapip0105B();
              com.sap.aii.proxy.framework.core.AbstractList list = new Bapip0105B.Bapip0105B_List();
              list.add(comm);
              employeeData.setUserid(userID);
              Calendar cal = Calendar.getInstance(Locale.UK);
              Date date = new Date(cal.getTimeInMillis());
              employeeData.setDate(date);
              employeeData.setAuthority_Check("");
              employeeData.setCommunication(list);
              outData.addCommunication(comm);
              wdContext.nodeBapi_Employee_Getdata_Input().bind(employeeData);
              wdContext.nodeOutput_BAPI().bind(outData);
            try
                   wdContext.nodeBapi_Employee_Getdata_Input().currentBapi_Employee_Getdata_InputElement().modelObject().execute();
                   wdContext.nodeOutput_BAPI().invalidate();
            catch (WDDynamicRFCExecuteException e) {printMsg("Failed to Obtain Employee Data");
                 e.printStackTrace();
            employeeID = wdContext.nodeBapi_Employee_Getdata_Input().nodeOutput_BAPI().nodeOrg_Assignment().currentOrg_AssignmentElement().getPerno();
            return employeeID;
        //@@end
    Hope it Helps!!
    Warm Regards
    Upendra Agrawal

  • Playing sound/beep on the handheld device using WebDynpro for Java (NW7.01)

    Does anybody know if we could play sounds or beeps on the handheld device using WebDynpro for Java (NW7.01)? We have a client requirement to have the handheld device beeps/makes different kind of sounds after the goods receipt is posted. We are looking for a way to play the sounds thatu2019s saved on the deviceu2019s directory. Appreciate any suggestions or input.
    Thank you!
    Teeracha

    Hi Terracha,
    you can use bellow mentioned methods for playing a sound using javascript :
    function playSound( url ){  
      document.getElementById("sound").innerHTML="<embed src='"+url+"' hidden=true autostart=true loop=false>";
    or
    https://github.com/admsev/jquery-play-sound
    $.playSound('http://example.org/sound.mp3');
    Hope that helps you as a workaround way.
    Regards,
    Srinivas Divakarla

  • A nice IDE for Java?

    What is a good IDE for Java?
    preferrably free or cheap?
    im not looking for a compiler, but a decent IDE that has Java native functions in a dropdown list... like Zend Compiler for PHP, or the CodeWarrior IDE for C++.

    alright thanks, i did some research, probably gonna go with that one =)

  • Which is most suitable ide for ejb?

    I want to develop ejb application with weblogic, which is most suitable ide for ejb?

    Hello Ramazan,
    you can try Intellij IDEA also
    I want to develop ejb application with weblogic, which is most
    suitable ide for ejb?

  • Looking for a Popular IDE for JAVA

    Hi folks,
    I am starting my journey into JAVA programming -I am wondering if there are any cheap or free Integrated Development Environment (IDE) for compiling and running Java programs. I downloaded SDK (Software development kit ,version 1.2) and I am finding it rather painful to run the commands manually to compile and run Java programs. Any help would be greatly appreciated
    I also downloaded Jbuilder(university edition) from the book Java -how to program ,third edition by Deitel and Deitel -had some problems with it and unfortunately discovered that it is for Windows 95 and NT while I have windows 98

    Hi folks,
    I am starting my journey into JAVA programming Great. That's nice to hear. :)
    -I am
    wondering if there are any cheap or free Integrated
    Development Environment (IDE) for compiling and
    running Java programs. Lucky for you therer is :) .
    I downloaded SDK (Software development kit ,version 1.2) and I am finding it
    rather painful to run the commands manually to compile
    and run Java programs. Any help would be greatly
    appreciatedHeh, I hated command line programming, especially from the dos prompt on
    windos platform.
    >
    I also downloaded Jbuilder(university edition) from
    the book Java -how to program ,third edition by Deitel
    and Deitel -had some problems with it and
    unfortunately discovered that it is for Windows 95 and
    NT while I have windows 98I'd recommend a few others.
    1) Netbeans, at http://www.netbeans.org
    2) Forte for Java, http://www.sun.com ; poke around to find it.
    3) JAWA. The address(& the spelling) fails me.
    I'd personally recommend 1&2, it runs on most platforms, its packs quite a lot of features. But it is quite resoure hungry and you do need a lot of memory. About > 256 .
    I have not used the third one, but quite a few people here seem to like it.
    There is another one in development, http://www.eclipse.org , seems to be bankrolled by IBM.

  • Ideas for Java Project

    Hi,
    Yet another desperate student here seeking ideas for a Master's Degree Java Thesis!!
    I've been given an idea for image analysis, i.e. counting and measuring images from a digital camera, but it all seems to have been done before.
    I'm interested in the areas of developing an online knowledge base or project repository for an IT department, but again, has it all been done before...yes.
    Can anyone please suggest something...anything that I can get my teeth into?
    Thanks in advance..
    Natalie.

    Hi,
    You can try a package named: JTwain, which is available at http://asprise.com/product/jtwain.
    JTwain supports all kinds of digital cameras and scanners. You can use Java to access, contorl digital cameras and scanners, and of course, to acquire images with flexible settings.
    The developers' guide is available @ http://asprise.com/product/jtwain/devGuide.php
    In the simplest case, one line of Java code can solve your problem.
    Good luck!

  • Reading files from KM using PDK for Java

    Hi Experts,
    I am developing an application in PDK for Java.This application will read the latest files in the KM folder.
    There are 100s of files in 100 of folders in KM. So I want to display the latest files that are from the KM folder. For eg., need to display the last 6 files that are created.
    Please let me know,how to do this, because, if we search in all the files,then it will take some time, so I want to reduce this time.
    How can be this done.
    Awaiting for your replies.
    Thanks & Regards,
    Palani

    your Km folder can be sorted based on the 'Creation date' in descendgin order.
    Then you will get all the latest documents in the top of your folder.
    You can do this in the Collectione renderer of your layoutset used.
    There in the sorting mode you can give cm_created
    Raghu

  • How to check actual allocated and used memory for java process in solaris?

    Hi,
    I'm testing performance for java application on solaris 10. And I would like to know how to measure actual memory allocated and used for java process.
    I'm setting -Xms512m -Xmx512m for my java process and I use prstat command to monitor it's memory. But I found that when I run prstat to check, in SIZE column is more than I setting (found 644).
    So I'm don't know the actual memory that java process used. (In this case,is it mean the process use memory (644) more than setting (512)?)
    Thank you.

    With Xms/Xmx you specify the Java heap size. On top of that comes the permanent generation (default max size 64m) and the C part of the process (the JVM itself with all its libraries and data).
    With "ps -e -o pid,vsz,rss,args" you get the virtual and set resident size of your processes.
    Nick.

  • Adding ideas for Java 1.7?

    Hi everybody,
    I was checking out Sun's web site, and I noticed they're working on Java 1.7. I have a good idea for a little functionality they can add to JTextPanes, and I was wondering, does anyone know if there's any way to put that idea forward so they might see it? Maybe I misunderstood what was on the web site, but it looked like the only ideas they were accepting from the site were new code pieces, not general ideas. I have no idea how to do what I'm thinking of in code, so somebody else would have to do it.
    Thanks,
    Jezzica85

    You'll probably want to post an RFE in the bug database:
    http://bugs.sun.com/bugdatabase/
    What's the idea?

Maybe you are looking for

  • How to compare delivery date in schedule lines and PGI in outbound delivery

    Hi, I want to create a report to monitor and compare different dates in sales and delivery process. One of my key figure is the comparison between date confirmed to the customer, that I can find in the schedule line of the sales order, and the actual

  • Can I change the Apple ID on my iPhone without losing the songs I've purchased under my current user I'd?

    I currently have an apple ID on my iPhone which I've been sharing with my husband.   I had to turn iCloud off so that my info wouldn't get downloaded on his devices too.  I purchased an IPad and created a new user ID and would like to sync my iphone

  • Digital camera and LabVIEW

    Has anyone ever controlled a canon digital camera from LabVIEW?  I am using a Canon EOS Kiss REBEL 300D. I tried using the software from the following link (http://www.hytekautomation.com/Downloads.html)  , but the "take a picture" button was disable

  • Window Opening Size

    Hi People; I have a window (Win1) which contains an Array of records. When I double click on one of the records(rows), the display method starts a task (Win2.display) which opens another window (Win2) which contains all of the record information. At

  • Init() called twice??

    Hi all, I have a simple dummy servlet, and when I set it up with "load-on-startup" = 1, the init() method is called twice by different threads! I've logged the thread's getName() to stdout. This is what I see: (main) init........ (http-8084-Processor