Java projects in Agent Computing.

One of my friend requires to do his intern project(for his masters degree) in Agent computing(preferably enterprise related). Can any one suggest me a problem which is solvable using Java in Agent conputing area. I will appreciate for the help.
Thanks,
Raghu

I saw few problems which is already solved. I want some problem which is not done by any one.

Similar Messages

  • XCode Java project - can you compile both a Mac .app and a Windows .exe?

    I'm working on a project for my computer science class, and it has to be done in Java. I'd like to be able to build a .app for the Mac and a .exe for Windows, and ideally I'd like to do it straight from within XCode. Is it somehow (at all) possible to configure a target to compile a .exe, or is there an easy way to export an XCode project so it can be easily opened on some Windows application and compiled into a .exe? (note: I am TOTALLY clueless about .exe files and how they're compiled!)

    In theory, you can simple stuff everything into a JAR file, and run that
    directly on the Windows box. The user simply double-clicks the JAR
    file. But it is better, for various reasons, to hide the JAR file inside an
    EXE. There are several packages that will do that for you. I think that
    "Launch4J" is a good choice. It is free, and well supported.
    Here is a good survey article, with links to many of the choices.
    http://www.excelsior-usa.com/articles/java-to-exe.html

  • Convert Java Project to exe file

    Helloz everyone,
    I have completed a java project. Now I have to convert it in exe file for windows.
    Can u please guide me. I can use any third party tool.
    But I want that it can be installed on any computer whenever double clicked and it make a icon. Whenever user click on that icon then it run the application.
    Thanks in advance.
    ViVeK

    Your jar command appears to be incomplete; it should lookk about like this:
    jar cvmf0 manifest_file MyJar.jar MyPackage/MyClass.class MyPackage/MyClass.gif MyPackage/MyClass.txt MyPackage/MyClass.html
    The 'm' in the command represents the manifest file. The 'f' represents the jarfile name. These can be reversed in order, but must be reversed respectively - that is, if the 'f' comes before the 'm', then the MyJar.jar needs to come before the manifest_file.
    The contents of the manifest needs - in the simplest cases - to look like this:
    Line 1. Main-Class: MyPackage.MyClass
    Line 2.
    Note please the Line x. do not appear; however the line 2 must exist and must be empty. IOW, a carrage return must exist at the end of line 1.
    Note too that the MyPackage part is optional. It's there if you have a specifically named package.
    Note lastly that you may not have .gif, .txt, etc files to add to your jarfile.

  • Help Java project.

    know its horrible... I feel horrible about it; i'm still working on it but this Java project is killing me... Just so you know i dont have to know programing after this class, i just had a choice between 3 computer classes and picked the one i guess i'm worst at... I've done four major projects before this one. I average getting about 75% correct. We code in BlueJ...The reason i'm finally breaking down for help is it was due on November 21st. o well enough of my babble if ur going to help ur going to help; if not ur not.
    Heres the assignment
    Open the project cards containing your code for class PlayingCard and create the two new
    classes in this project space:
    Part 4: Implement class CardDeck that has the following declaration:
    public class CardDeck {
    private PlayingCard[] deck;
    public static final int DECK_SIZE = 52;
    //number of cards still in the deck:
    private int numCardsLeft;
    public CardDeck(){ ? }
    private void removeCard(int index){ ? }
    public void shuffle(){ ? }
    public void wholeDeck(){ ? }
    public PlayingCard topCard(){ ? }
    public PlayingCard anyCard() { ? }
    In your implementation, you must follow these guidelines:
    1. Constructor of the class must properly initialize the CardDeck object: create the array object with number of "compartments" equal to DECK_SIZE and assign it to the field deck ; then create all 52 cards in such a way that there are no duplicate cards in the deck. You must use Java loop(s) to create the above PlayingCard objects. In addition, the constructor must assign the value DECK_SIZE to the field numCardsLeft.
    2. Method removeCard(int index) must first check that the index is between 0 and the value of numCardsLeft-1. If it is true, then the method must
    ? shift all the cards in the deck array starting with index+1 and up to
    numCardsLeft-1 position left by one "compartment"
    ? set the last value in the deck to null, like so:
    deck[numCardsLeft-1] = null;
    ? decrement value of numCardsLeft by 1
    3. Method shuffle()randomly re-arranges cards in the deck:
    a) Declare a local variable temp of the type PlayingCard
    B) Generate two random numbers i and j between 0 (inclusive) and DECK_SIZE
    (exclusive) and swap the two cards stored at these index positions in the array:
    temp = deck;
    deck[i] = deck[j];
    deck[j] = temp;
    Repeat step B) at least 50 times, to get a good shuffle!
    4. Method wholeDeck() must display descriptions of all the cards in the deck on screen. In order to do this, use an enhanced for loop to iterate through the deck array, and for each PlayingCard element of it call method describeCard() of class PlayingCard.
    5. Method topCard()calls removeCard with 0 passed as the parameter value, and
    returns a copy of PlayingCard object that was removed (that is, the card that used to be at index 0 in the array, before we removed it).
    6. Method anyCard() removes a PlayingCard object stored at a random index in the
    array: using an object of class java.util.Random, generate a random number between 0 and numCardsLeft-1, and pass this value as the parameter to the method
    removeCard. Method anyCard must return a copy of the of PlayingCard object that
    was removed.
    Part 5: Implement class CardDeckTest that contains only the method
    public static void main (String[] args) which does the following:
    ? create an object of type CardDeck
    ? call the method wholeDeck()
    ? call the method shuffle()
    ? call the method wholeDeck() again
    ? call the method topCard(), store its result in a variable, and then use this variable to call method displayCard()of class PlayingCard
    ? call the method anyCard(), store its result in a variable, and then use this variable to call method displayCard()of class PlayingCard
    demo programs:
    use proper indentations

    can someone simplify the following code so that it works with my instructions? I had a friend (took this class before) help with the coding but he didnt have to use class deck.
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    import java.lang.Character.Subset;
    public class Blackjack extends Applet implements ActionListener {
    String suit[] = {"H","C","D","S"};
    String cardvalue[] = {"A","2","3","4","5","6","7","8","9","10","J","Q","K" };
    int deck[] = { 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,0};
    Font suitfont = new Font("SansSerif",Font.BOLD,24);
    Font cardfont = new Font("Arial",Font.BOLD,24);     
    Font bigfont = new Font("Arial",Font.BOLD,36);     
    private Button hit = new Button(" Hit Me ");
    private Button stand = new Button(" Stand ");
    private Button deal = new Button(" Deal ");
    int clearscreen = 1;
    int card = 0;
    int housewins = 0;
    int playerwins = 0;
    int housepoints = 0;
    int playerpoints = 0;
    int housecards = 2;
    int playercards = 2;
    int turn = 0;
         public void init() {          
              add(hit);
         hit.addActionListener(this);
         add(stand);
         stand.addActionListener(this);     
         add(deal);
         deal.addActionListener(this);
         shuffle();
         card = 0;
         public void shuffle() {
         for(int i=0;i<1000;++i)
              int a = (int)(Math.random()*52.0);
              int b = (int)(Math.random()*52.0);
              int temp = deck[a];
              deck[a] = deck;
              deck[b] = temp;
         public void paint(Graphics g) {
    Image temp1 = getImage(getDocumentBase(),"s1.gif");
    Image temp2 = getImage(getDocumentBase(),"s2.gif");
    Image temp3 = getImage(getDocumentBase(),"s3.gif");
    Image temp4 = getImage(getDocumentBase(),"s4.gif");
    Image[] thesuit = {temp1, temp2, temp3, temp4};
              /* if(clearscreen==1) {
              g.fillRect(0,0,500,350);
              clearscreen = 0;
              setBackground(Color.green);
              g.setFont(bigfont);
              g.setColor(Color.blue);
              g.drawString("House", 50, 80 );
              g.drawString("Player", 50, 200 );
              g.drawString("Wins",370, 80);          
              g.drawString(Integer.toString(housewins),400,170);
              g.drawString(Integer.toString(playerwins),400,290);
              g.setFont(suitfont);
              if(((deck[card + 1] / 13) == 3) || ((deck[card + 1] / 13) == 2))
                   g.setColor(Color.red);
              else
                   g.setColor(Color.black);     
              g.drawString(cardvalue[deck[card + 1] % 13] , 100 , 120 );
              g.drawImage(thesuit[deck[card + 1] / 13] ,130, 100 ,this);
              if(((deck[card + 2] / 13) == 3) || ((deck[card + 2] / 13) == 2))
                   g.setColor(Color.red);
              else
                   g.setColor(Color.black);     
              g.drawString(cardvalue[deck[card + 2] % 13] , 20 , 240 );
              g.drawImage(thesuit[deck[card + 2] / 13] ,50, 220 ,this);
              if(((deck[card + 3] / 13) == 3) || ((deck[card + 3] / 13) == 2))
                   g.setColor(Color.red);
              else
                   g.setColor(Color.black);     
              g.drawString(cardvalue[deck[card + 3] % 13] , 100 , 240 );
              g.drawImage(thesuit[deck[card + 3] / 13] ,130, 220 ,this);          
    if (playercards>2) {
    if(((deck[card + 4] / 13) == 3) || ((deck[card + 4] / 13) == 2))
                   g.setColor(Color.red);
              else
                   g.setColor(Color.black);     
              g.drawString(cardvalue[deck[card + 4] % 13] , 180 , 240 );
              g.drawImage(thesuit[deck[card + 4] / 13] ,210, 220 ,this);               
    if (playercards>3) {
    if(((deck[card + 5] / 13) == 3) || ((deck[card + 5] / 13) == 2))
                   g.setColor(Color.red);
              else
                   g.setColor(Color.black);     
              g.drawString(cardvalue[deck[card + 5] % 13] , 260 , 240 );
              g.drawImage(thesuit[deck[card + 5] / 13] ,290, 220 ,this);               
    if (playercards>4) {
    if(((deck[card + 6] / 13) == 3) || ((deck[card + 6] / 13) == 2))
                   g.setColor(Color.red);
              else
                   g.setColor(Color.black);     
              g.drawString(cardvalue[deck[card + 6] % 13] , 340 , 240 );
              g.drawImage(thesuit[deck[card + 6] / 13] ,370, 220 ,this);               
    if (housecards>2) {
    if(((deck[card +  playercards + 2] / 13) == 3) || ((deck[card + playercards + 2] / 13) == 2))
                   g.setColor(Color.red);
              else
                   g.setColor(Color.black);     
              g.drawString(cardvalue[deck[card + playercards + 2] % 13] , 180 , 120 );
              g.drawImage(thesuit[deck[card + playercards + 2] / 13] ,210, 100 ,this);               
    if (housecards>3) {
    if(((deck[card + playercards + 3] / 13) == 3) || ((deck[card + playercards + 3] / 13) == 2))
                   g.setColor(Color.red);
              else
                   g.setColor(Color.black);     
              g.drawString(cardvalue[deck[card + playercards + 3] % 13] , 260 , 120 );
              g.drawImage(thesuit[deck[card + playercards + 3] / 13] ,290, 100 ,this);               
    if (housecards>4) {
    if(((deck[card + playercards + 4] / 13) == 3) || ((deck[card + playercards + 4] / 13) == 2))
                   g.setColor(Color.red);
              else
                   g.setColor(Color.black);     
              g.drawString(cardvalue[deck[card + playercards + 4] % 13] , 340 , 120 );
              g.drawImage(thesuit[deck[card + playercards + 4] / 13] ,370, 100 ,this);               
              g.setColor(Color.red);
              g.drawString("Your Points: " , 20, 290 );
              g.drawString("House Points: " , 20, 160 );     
              playerpoints = 0;
              int wasace = 0;
              for(int i=2;i<(playercards+2);++i)
                   int cardvalue = 1 + deck[card +  i] % 13;
                   if(cardvalue < 11)
                        playerpoints = playerpoints + cardvalue;
                   if(cardvalue > 10)
                        playerpoints = playerpoints + 10;
                   if((cardvalue == 1) && (playerpoints < 12))
                   {  wasace=1;
                        playerpoints = playerpoints + 10;
              if((wasace==1)&&(playerpoints>21))
                   playerpoints = playerpoints - 10;
              if(playerpoints>21) {
              turn=1;
              g.drawString("Bust" , 320, 290 );
              if((playerpoints==21)&&(playercards==2)) {
              turn=1;
              g.drawString("BlackJack" , 240, 290 );
              if(turn==0)
              g.drawString("? ?" , 20 , 120 );
              else
              if(((deck[card] / 13) == 3) || ((deck[card] / 13) == 2))
                   g.setColor(Color.red);
              else
                   g.setColor(Color.black);     
              g.drawString(cardvalue[deck[card ] % 13] , 20 , 120 );
              g.drawImage(thesuit[deck[card ] / 13] , 50, 100 ,this);
              housepoints = 0;
              wasace=0;
              for(int i=0;i<2;++i)
                   int cardvalue = 1 + deck[card +  i] % 13;
                   if(cardvalue < 11)
                        housepoints = housepoints + cardvalue;
                   if(cardvalue > 10)
                        housepoints = housepoints + 10;
                   if((cardvalue == 1) && (playerpoints < 12))
                   { wasace=1;
                        housepoints = housepoints + 10;}
              for(int i=2;i<housecards;++i)
                   int cardvalue = 1 + deck[card +  i + playercards] % 13;
                   if(cardvalue < 11)
                        housepoints = housepoints + cardvalue;
                   if(cardvalue > 10)
                        housepoints = housepoints + 10;
                   if((cardvalue == 1) && (housepoints < 12)) {
                        wasace=1;
                        housepoints = housepoints + 10;}
              if((wasace==1)&&(housepoints>21))
                   housepoints = housepoints - 10;
              if((housepoints<16) && (turn==1) &&(playerpoints<22)&& (!((playerpoints==21)&&(playercards==2))))
                   ++housecards;
                   repaint();
              g.drawString(Integer.toString(playerpoints) , 190,290 );     
              if(turn==1)
                   g.drawString(Integer.toString(housepoints) , 190,160 );     
              if(housepoints>21)           
              g.drawString("Bust" , 320, 160 );
    public void actionPerformed(ActionEvent e)
              if(e.getSource() == hit) {
                   if((turn==0)&&(playercards<5))
                   ++playercards;
                   repaint();
              if(e.getSource() == stand) {
                   if(playerpoints>13)
                   turn = 1;
                   repaint();
              if(e.getSource() == deal) {
                        card = card + playercards + housecards;
                        if(card>40)
                             shuffle();
                             card=0;
                   if(((playercards==2)&&(playerpoints==21))||(playerpoints>housepoints)||((playerpoints<22)&&(playercards==5)))
                        ++playerwins;
                   else
                        ++housewins;
                   playercards = 2;
                   housecards = 2;
                   turn = 0;
                   repaint();

  • How to use BO SDK in local java project?

    Hi,
    I am trying to connect BO system using below mentioned code
    public void main(String args[]) throws SDKException {
         try
              System.out.println("main");
              /ISessionMgr sessionMgr = CrystalEnterprise.getSessionMgr();/
              IEnterpriseSession boEnterpriseSession = CrystalEnterprise.getSessionMgr().logon( "Administrator","","BOSAP","secEnterprise");
              IInfoStore boInfoStore =(IInfoStore) boEnterpriseSession.getService("InfoStore");
              ChangePWD(boEnterpriseSession, boInfoStore);
         }catch(Exception e)
              System.out.println("Exceptions in main");
              System.out.println(e);
    This code was taken from below mentioned thread:
    Force all users to change their Enterprise passwords with a batch operation
    I have created standalone java project and running as JAVA application in eclipce. I am getting class def not found error for these BO SDK jar files. I have added
    cecore.jar
    celib.jar and
    cesession.jar files as external lib to java project
    I am using following imports
    import com.crystaldecisions.sdk.framework.CrystalEnterprise;
    import com.crystaldecisions.sdk.framework.IEnterpriseSession;
    import com.crystaldecisions.sdk.exception.SDKException;
    import com.crystaldecisions.sdk.occa.infostore.*;
    import com.crystaldecisions.sdk.occa.infostore.IInfoObjects;
    import com.crystaldecisions.sdk.occa.infostore.IInfoStore;
    import com.crystaldecisions.sdk.plugin.desktop.user.IUser;
    Does any one know solution to fix class def not found error?
    Thanks
    Nitesh Shelar

    I did some mistake few dependent jars were missing in project build path. After adding those missing BO jar files. Now its giving server connection error. Which I am trying to resolve.
    Thanks for your help.
    Nitesh Shelar

  • What is the easiest way to transfer a large imovie project from one computer to another in a different location.

    What is the easiest way to transfer an faairly large HD imovie project from one computer to another in a different location. Can you export to drop box? Will the other computer need the exact imovie version?

    OK it depends.
    If you have a finished movie, you can SHARE/EXPORT MOVIE and create your final movie. Then, depending on the size of the finished movie, you can transfer via dropbox or similar service. Ninety minutes is a very long movie for iMovie, but it may work for you. I would suggest 720P to keep the size down.
    If you need to transfer the entire iMovie Project so it can be edited in iMovie at the other end, then you need to transfer the project and event assets to an external hard drive and get the hard drive to the other location.
    Directions are here. Follow the directions for 1) Moving or copying Project to external drive. Then 2) Consolidate Media.
    https://discussions.apple.com/docs/DOC-4141

  • How to move iMovie project from one computer to another

    I have been working on an iMovie 09 project on my desktop at home.
    Now I want to work on the same project on my computer at work.
    How can I move the project from one computer to another?   What I've already tried was to make a duplicate copy of the project and then use a thumb drive to move that to another computer.   It didn't work.
    Thanks for your help.

    Hello James Snedeker,
    After reviewing your post, it sounds like you want to move a file to another disk. I would recommend that you read this article, it may be able to help the issue.
    iMovie: How to Save Projects to Another Hard Disk
    To copy an iMovie project to another disk:
    1. Quit iMovie if it is open. 
    2. Locate the project folder in the Finder.
    3. Drag the project folder to the other disk.
    Note: You must move the complete project folder, intact, to the other disk in order to successfully copy the project. The project folder has the same name as the project listed in the iMovie window. This folder includes the iMovie project file, as well as a Media folder, which contains all of the clips associated with this project. If you don't copy all of these items, the project may no longer be readable in iMovie.
    Once you have copied the project, try opening it in iMovie to ensure that it copied to the other disk successfully.
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • How can I move new Garageband(10.0.2) project to another computer

    Hello,
    I normally record on my drummers' macbook pro. However, I wanted to make some extra adjustment of our work on my own computer as well. I researched and I found some solutions saying that "save as Archive Project" then transfer. But looks like on the new Garageband 10.0.2, there is no option called "Enable Archive Project." So is there anyway I can open the project on my computer. I tried to just copy it and open it but it says "file cannot be opened"
    Mac pro OSX 10.9.2
    Garageband 10.0.2

    How did you transfer the project to your computer?
    You need to copy the project file (.band) and transfer it on a thumbs drive or similar, then copy it from that drive to your computer.
    You cannot open a GarageBand project on a DVD or CD, the device needs to be writable and formatted for Mac as MacOS Extended (Journaled).
    Set the "Ignore Ownership on this Volume" flag for the thumbs drive you are using to copy the project. You can do that from the "Permissions" brick in the "Get Info" panel for the drive, if you select it inn the Finder and use "File > Get Info".
    And, last but not least, are you having exactly the same versions of GarageBand on both macs?
    Alternately, if you are using the same AppleID on both macs, save your project to iCloud on the first Mac, and download it from iCloud on the second Mac.
    To save to iCloud:
    Make sure, Documents and Data is enabled in System Preferences > iCloud.
    File > Save as
    Select iCloud in the File Chooser
    To download from iCloud on your mac at home, use File > iCloud > Open iCloud Song.

  • I m not able to create xml file in Java Project

    hi all,
    I have created one java project just to try with Ant Builder. I have created one class inside it. and now i m creating an XML file inside that project.
    But as soon as i try to create the File -> New -> File and give the .xml extention of the file this gives error into the project.
    Will you suggest me the solution for that?
    Thanks in advance.

    Assuming that you are facing this problem in NDS, here is the solution.
    Go to Windows--> Preferences --> WorkBench -->File Associations
    In the File Types list select *.xml
    This will display the default associated XML editor as
    XML Editor(default) in the bottom list box.
    Click on add button near the bottom list box and select Text Editor, click Ok.You will see one more entry in the list box as "Text Editor".
    Select this entry and click on the default button.
    Click Ok and close the preferences dialogue.
    Now create a new xml file.You wont see the error this time.
    Please note that this will treat all simple xml files you will create as TEXT Files and always open with Text Editor.You can override this behaviour with right click on the file and select appropriate editor from the "Open With" context menu.
    The error you are talking about is because the XML editor tries to check well-formedness and basic syntax rules for the file that you newly created, actually is a noce feature of the IDE.
    Rgds,
    Amol

  • [ot] A UML tool for a new Java project

    I am working on the new Java project and need a UML tool to get it start. I am wondering whether anyone one can recommend such tool or not. It can be either stand alone or as an Eclipse plug-in. It shall be able to handle at least 50 classes.
    Thanks.

    Is it any good? I haven't tried it but we're
    evaluating UML tools here and it's on my list to play
    with.
    PS.If you mean SDE....
    I have only used the personal edition at home, and the other versions have more functionality available
    My impressions, FWIW, are
    - easier to use than rational rose (I find this one which I have to use at work to be a pain), although, paradoxically enough, they are not that dissimilar in appearance
    - I was able to create some reasonably complex models without any problems
    - easy to install and start using - no great learning curve
    - I tried importing a model I had exported from rose and that did not work very well at all.
    - this applies to version 2.2

  • Best Practices for Defining NDS Java Projects...

    We are doing a Proof of Concept on using NDS to develop non-SAP Java applications.  We are attempting to determine if we can replace our current Java development tools with NDS/WAS.
    We are struggling with SAP's terminology and "plumbing" for setting up/defining Java projects.  For example, what is and when do you define Tracks, Software Components, Development Components, etc.  All of these terms are totally foreign to us and do not relate to our current Java environment (at least not that we can see).  We are also struggling with how the DTR and activities tie in to those components.
    If any one has defined best practices for setting up Java projects or has struggled with and overcome these same issues, please provide us with some guidance.  This is a very frustrating and time-consuming issue for us.
    Thank you!!

    Hi Peggy,
    In Component Model we divide software projects into small components.Components can use other components in well defined manner.
    A development object is a part of a component that can be changed or developed in some way; it provides the component with a certain part of its functionality. A development object may be a Java class, a Web Dynpro view, a table definition, a JSP page, and so on. Development objects are always stored as “sources” in a repository.
    A development component can be defined as a frame shared by a number of objects, which are part of the software.
    Software components combine components (DCs) to larger units for delivery and deployment.
    A track comprises configurations and runtime systems required for developing software component versions.It ensures stable states of deliverables used by subsequent tracks.
    The Design Time Repository is for versioning source code management. Distributed development of software in teams. Transport and replication of sources.
    You can also find lot of support in SDN for the above concepts with tutorials.
    Refer this Link for a overview on Java development Infrastructure(JDI)
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/java/java development infrastructure jdi overview.pdf
    To understand further
    Working with Net Weaver Development Infrastructure :
    http://help.sap.com/saphelp_nw04/helpdata/en/03/f6bc3d42f46c33e10000000a11405a/content.htm
    In the above link you can find all the concepts clearly explained.You can also find the required tutorials for development.
    Regards,
    Vijith

  • How to run a java project based on x86 Windows XP on Windows CE?

    I am a freshbird of J2ME and i am very confused these days.I beg you can look this topic thoughout.
    I used to configurate a Java Project File about SIP&VOIP successfully,and I can run it well on my PC .
    Now I want to migrate the project to a Mobile OS,and problems comes.
    I have installed the Windows CE 5.0 Evalution Edition on my machine(Windows XP SP2) and it works fine.I search it online for days ,and I download almost all related including CLDC(j2me_cldc-1_1-fcs-src-winunix.zip),MIDP(midp-2_0-fr-spec.zip<==Maybe this is not the right one beacuse it don't have a bin folder),and J2ME Wireless Tool KIt(j2me_wireless_toolkit-2_2-ml-windows.exe).
    I have configrate the enviroment-variable already , but I don't kown what to do next . Do you kown? I would be very thankfull.

    You need to completely rewrite the app to use the mobile APIs as they're very different from the PC ones, I suppose.

  • How do i migrate all my imovie projects from one computer to another

    how do i migrate all my imovie projects from one computer to another

    You need to attach the computers to one another say with a firewire cable? Or use an external hard drive to copy the Events/Projects and then move the hard drive to the other computer. Are you able to do either one of these first?

  • How to create the exe file for java project.

    How to create the exe file for java project.
    am done the project in java swing , i like to create the project in exe format, so any one help for me,
    send the procedure for that.
    thanking u.

    How to create the exe file for java project.Have you ever heard of google? I pasted your exact "question" into a google search:
    http://www.google.com/search?q=How+to+create+the+exe+file+for+java+project.
    and got several useful links.
    Better search terms might yield even better results.
    Sheesh.

  • Getting an error in Java Project in SAP NetWeaver Developer Studio

    Hi,
    I am getting this error in my Java Project developed in SAP NetWeaver Developer Studio.
    Exception occurred during launch Reason: Source locator does not exist org.eclipse.jdt.debug.ui.javaSourceLocator
    Is this problem of not defining some External .jar file or problem with Eclipse?
    I am developing Java Project which connects with SAP Master Data Management.
    I am referring to a PDF named "How To identify identical master data records using SAP MDM 5.5
    Java APIu2019s".
    Regards
    Kaushik Banerjee

    This may be because of the metadata(registry) cache when it was written out by a second instance of NWDS.
    So the plug-in appears in the file system but NWDS doesn't see it in the metadata
    Delete the .metadata file from your workspace and then start up NWDS. It might work.
    Regards,
    PG
    Edited by: PG on Dec 16, 2008 3:18 PM

Maybe you are looking for

  • Bex Hierarchy issue on Webi report

    Hello Experts, We are facing issues on use of Bex hierarchy in webi report, Issue statement: We have webi report on bex query which have table and chart with input control on year and month to filter the report, table and chart uses hierarchy object

  • "Invalid annotation object" on only two of six computers.

      When searching for the resolution to this error I keep seeing that the PDF is corrupt when people get the error "Invalid annotation object".  But I have a office that has eight workstations and only two are getting the error.  To further complicate

  • How to get name of variable passed to method

    How can I get the name of the variable that's passed into a method, in the method? for instance: the following code prints an array to a text file, and includes the name of the array in the name of hte text file. So, to call it, I have to do this: pr

  • Select-a-date field not working on iPhone

    I'm having trouble getting this form to work on a mobile device: www.centralparkpetretreat.com/contact-us There are 2 select-a-date fields on this form (drop-off date and pick-up date). The first one works and the second one doesn't. It seems to only

  • EJB Client in Web App

    Hello All, I have an ear file containing a war for a web app and a jar for an ejb. I am trying to instantiate the EJB in my web app (war file). My question is how does the web app know about the interfaces from the EJB: I want to call the local inter