How can I build Instalation Program for java applet?

I want to build on line internet game based on java applet.
Uset must instull the game to his computer.And this program mast Connect to the server when user enter
to this application.Not from explorer,but from my application,like when i enter to ICQ.
My questions:
How can i build instalation program in java?
How can i connect to the server when user enter into my game not from explorer but from game?
Thanks,Maya.

Hi Maya
First of all an Applet does not have to be "installed" as you would with a normal application. The browser handles the install and execution of the applet.
Check out this URL for more about applets:
http://web2.java.sun.com/docs/books/tutorial/applet/index.html
On the subject client/server pairs - see:
http://web2.java.sun.com/docs/books/tutorial/networking/sockets/index.html
If you decide to make the game an application instead check out Sun's WebStart - under the products section.
That's about all the help I can give you.
Programming a game is a complicated subject - I am doing one too:
http://hjem.get2net.dk/mhjembaek/armageddon/
Kind reg,
Hjembaek

Similar Messages

  • How can i build RPMs file for my own Java Application?

    How can i build RPMs file for my own Java Application?....I have my own directory that contains all Java Source files and some files that my Application required....I want to build RPMs file like a install File to Linux System, Now my OS is Linux Fedora core 1.....How can i do this?

    I think that in order to create a RPM, you'd need to
    use some C.Nope - the RPM is all about packaging and the "magic" x.spec file. You can have anything you want in the RPM, but you have to use RPM tools to build the .rpm file. One of the features is that you can also indicate (via "install" scripts) modifications to other files or the filesystem to support the installation of whatever's in the RPM.

  • How Can i Remove installed program on my MacBook

    Sombody tell me How can i remove installed Programm on my MacBook

    Depends entirely on the application.
    If it was installed in the first place by dragging it's icon to the Applications folder, then dragging to the trash should be all that's needed. It may leave a .plist file, but that's not going to do any harm.
    If it was installed using an Installer, then it usually means there will be support files in various places, and an uninstaller is best used to remove all the files. Often the Installer will have an uninstall option (so keep the .dmg downloads), but some apps will need you to go to the vendor's website for one (several Adobe apps fall in this category).
    If no uninstaller is available, there are third-party programmes to help you find all the various files associated with an app.
    AppDelete and AppZapper are two that spring to mind. These can have variable success depending on how the individual files are named, but in general do a reasonable job.

  • How can we find print program for user defind Tr. Code.

    Hello Friends,
    If I know the user defined Script Name and Corresponding Tr. Code, How can I find Print Program. In TNAPR Table, I am getting SAP Standard forms and corresponding print programs?
    Thanks & Regards
    Sathish Kumar

    Hi Sathish,
    You can use the table TTXFP to get the name of print program by entering the Script name.
    Hope this helps.
    Regards,
    Saurabh

  • How can I run other programs using java program

    hi experts,
    I am trying to execute a set of commands from java program
    eg: from command prompt
    java CommandExecutor c:\winnt\notepad.exe c:\some.exe c:\onemorecommand.exe
    and inside the CommandExecutor main method..
    public static void main(String []arg)
    for(i = 0; i < arg.length; i++)
    Runtime.getRuntime().exec(arg(i));
    the above code is executing all the command one after the other, but I want to execute the above commands squentially, i.e I want to execute the second command only after finishing the first command and the third after finishing the second and so on depending upon the arguments passed, how can I acheive this...
    I have tried to use the Process which is returned by the exec(arg) method but the exitValue() returns same value before execution and after execution.
    thanks,
    krishna

    Did you try to get the process returned and then try
    process.waitFor() method. This waits for the process to finish.
    After that try the next execution

  • How can I open a program using Java and then perform certain tasks with it?

    For example, and this is just an example, I want to write a Java program that opens MS Paint and then manipulates that program. This can be useful to automate certain tasks.
    My question is whether this can be done writing Java code and if so how? If not possible, would I need to use a scripting language instead?

    write a Java program that opens MS Paint and then
    manipulates that program. This can be useful to
    automate certain tasks."manipulates" is a too wide term. Let me narrow down:
    1. If you want to open (run) the program and then shut (kill) it down it is possible and fairly trivial to do in java. Look up Runtime and Process classes in java.lang package
    2. If you want to open the program and edit some image/document in the opened program. It is very difficult in java. May be possible... using some Java/COM bridge, assuming your native program is COM/Active-x compliant. Note: these things go beyond the boundary of JVM and needs to interact with host OS and involves shared memory, ipc and all "low level" stuffs.
    If you want to be able to play around with these COM/Activex apps- choose .NET instead :-)
    3) You can open the program from java and pass it some command line arg as in (1) above and then the program will load that document/image at startup automatically. You may then edit the doc/image thru that program itself. However, Java is not doing anything for you here, other than just starting off your native mspaint.exe ot notepad.exe.
    -BJ
    Message was edited by:
    Bimalesh

  • How can I disable installed program on public computer?

      I need to disable installed program on public computer.
      I just wanted to use the after effect and I installed on public computer.
      But I can not access to public computer anymore.
      Please help me.
      I still have the rest of days to use trial version.

    If you installed a trial on a public computer and you have no access to it there is not much you can do about it.

  • How can i schedule concurrent program for every one hour from back end

    Hi ,
    I want to schedule concurrent program for every one hour from back end .
    Example
    1) xyz is the concurrent program that should run for every one hour with a parameter 111 and the SAME concurrent program that
    should run every 2 hours with a different parameter like 222.
    I mean Conc prog should run for different parametrs with a different scheduling..
    Please guide me to solve the issue.
    Thanks in advance...
    Regards
    Narender B

    Hi ,
    I have used following code for scheduling the concurrent program from backend.
    declare
    l_request_id NUMBER;
    l_return_code boolean := FALSE;
    BEGIN
    fnd_global.apps_initialize(62991,54477,20003);
    l_return_code := FND_REQUEST.SET_OPTIONS ('YES');
    l_return_code :=fnd_request.set_repeat_options('16:36:00','','DAYS','START','','Y');
    l_request_id:=fnd_request.submit_request(application => 'xbol',
    program => 'NAPP_START_GENERATE_CHART_DATA',
    description => 'Processing chart ',
    start_time => SYSDATE,
    sub_request => FALSE,
    argument1 =>4000130957231588,
    argument2 => null
    COMMIT;
    dbms_output.put_line('Program has been submited and request id is '||l_request_id);
    END;
    Here the issue was concurrent program is completing with a warning like
    Resubmission of request 75588551 has been cancelled.
    FND_RESUB_PRIVATE.PROCESS_INCREMENT EXCEPTION: ORA-01403: no data found
    Resubmission of request 75588551 has been cancelled.
    FND_RESUB_PRIVATE.PROCESS_INCREMENT EXCEPTION: ORA-01403: no data found
    so i could not find the solution for this issue,please anybody guide me to solve this issue.
    Regards
    Narender B

  • I have a Mac OS X and a Sony HDR-CX7 camcorder.  When I get onto the sony webpage to download program to import movies onto my Mac, they only have downloads for Windows.  How can I get a program for my Mac?

    I have a Mac Os X and a Sony HDR-CX7 camcorder.  When I get onto the Sony webpage to download the program so I can import my movies, they only have programs Windows.  How do I get this for my Mac.

    You shouldn't need any application except what you already have: iMovie, iDVD, iPhoto....
    To check on compatibility with your model camcorder, check these out:
    https://support.apple.com/kb/HT3290
    http://support.apple.com/kb/TS3356
    Some formats are not readable by the above; you can use something like MPEG Streamclip to convert the footage or Quicktime Pro (as mentioned in one of the articles).

  • How can I programmatically install support for DAQmx Base to a PDA?

    Greetings, I am developing a LabVIEW application for a PDA (HP iPAQ in this case), and a companion VI that will run on a PC. One of the things I need to do from this companion VI is provide a means of programmatically rebuilding the PDA application, including reinstalling support for DAQmx Base. I think I know how to rebuild the LabVIEW application using the Project, but I don't see how to install DAQmx Base. What is the best way to do this?
    Thanks in advance!

    How would you programatically rebuild the PDA application? If you are interested in reinstalling the DAQmx Base driver on the device, then you will need to navigate to Start»Programs»National Instruments»NI-DAQmx Base»Utilities and launch the driver installation utility that corresponds to your device. If you are interested in doing this programatically, you could run the executable from C:\Program Files\National Instruments\NI-DAQmx Base\Pocket PC using the System Exec.vi. I don't think there is any other way of doing this.
    Adnan Zafar
    Certified LabVIEW Architect
    Coleman Technologies

  • How can I build app's for RTE 8.0 with Labview 8.2

    Is there a possibility to build applications with LabView 8.2 in a way to execute them with the RTE 8.0. It's not a problem to save the sourcecode as LabView 8.0 format, but if I build this code e.g as  *.exe and try to execute with RTE 8.0 an error occured. The errormessage is, that it's not possible to execute an file created for RTE 8.2 with RTE 8.0. What is to do to build an RTE 8.0 compatible application?

    Applications written for 8.0 will only run with the 8.0 rte. New applications written for 8.2 will run only with the 8.2 rte. Your internal support doesn't know what it is talking about if they think otherwise. No need to upgrade the rte unless you paln to rebuild the 8.0 apps with 8.2. Both run times can be installed on the same pc if the old apps are working. Not much reason to change unless they need to be edited and you use 8.2 as the editor. I would image that if you build a new app in 8.2, it would have to undergo the same quality check as the 8.0 applications.
    You are able to do a save as for 8.0 so that users with 8.0 can open them and use them with the older version. It's simply not possible for a newer development environment to target a build for an older run-time. Before you even do a build, the source code is compiled for the version you are currently using. The only way to swithc compilers is to switch versions of LabVIEW.

  • How can users remedy install failure for Windows Photoshop CS6 v13.0.2?

    Error code U44M1P7 is obviously a catchall for any of several possibilities. The suggestion to manually download the update is useless. It isn't available. (A bad link leads to Mac version.) As for the other possibility, many other users and I have deleted the unneeded language files either by use of a cleanup utility or manually, on purpose. Any installer that has unspecific error codes, while not allowing for a sensible change that  economizes space needs to be rewritten. An awful lot is riding on the integrity of the Adobe Download Manager, and its occasional failures are maddening. I run CC and CS6 Creative Suites, and I need to  keep them both because CC has 'broken' so many plugins.
    It would be very helpful to know where ADM puts downloaded files and have an option to save them before installing. It took me two runthroughs to get CC installed and I've tried for the CS6 update four times so far with no copy of the installer to reuse. At its best, ADM is lethargic to respond, and there remains the statistical near-certainty that the site will be down when someone needs to use it. Personally, I think the 'Cloud' is a lousy paradigm. I know I'm not the only one who looks back fondly on the days of physical media, or at very least downloads that could be burned to physical media. The whole cloud thing is still in its infancy, and a lot of user time iwasted while Adobe learns (and invents) the ropes. Maybe one day, when there is a 100% installed base of high speed fiber optic connections, the cloud will make our lives easier. It certainly hasn't done so yet.

    kloaster wrote:
    It would be very helpful to know where ADM puts downloaded files and have an option to save them before installing. ... no copy of the installer to reuse ... there remains the statistical near-certainty that the site will be down when someone needs to use it ... I know I'm not the only one who looks back fondly on the days of physical media, or at very least downloads that could be burned to physical media.
    No worries Kloaster – you should just be able to use the direct links instead to get whichever Adobe applications you want and copy/save the offline installers for backup or burn to DVD for later reuse whenever or wherever you want:
    All Adobe CS6 Direct Links, without the Download Manager or Assistant
    and/or
    All Adobe CC Direct Links, without the Application Manager or Desktop App

  • HT5364 How can I change the security for java? I cannot upload a picture.

    Hello there,
    I cannot upload a picture to a site. I have attached the error message with the hope someone knows what I need to do?
    thanks

    Hi,
    Picture Uploading here is handled by javascript within the page.
    It is enabled in Safari like this
    The Internet Plug-ins may have the Java App plug-in if you have Installed Java.
    It does look more likely that it is a Plug-in that is the trouble. I mention javascript due to the similarities in name and the fact either could be used.
    9:31 pm      Monday; March 10, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Old computer had water damage, how can I re-install CS6 for my new mac?

    I can't find my disc or serial numbers.

    What if I wasn't smart enough to register it... I don't know how i made an adobe account but didn't register CS6, but i cannot spend another 700+ on a new instal

  • How can i clear a screen in java applet?

    i'm searching a method to clear a applet completely before i repaint... i know that repaint normaly overwrite what was there before but bacause that was not allowed in my program i made de repaint just paint stuff...
    but now i'm searching a way to clear the aplet before i repaint something like clear()? does it exist?

    Do you override the update method? if so, don't. Update normally 1st clears, 2nd calls paint.
    Or you can call a g.drawRect(0,0,width,height) with the color of your background at the top of your paint() method.

Maybe you are looking for