Help compiling jar (will pay for help)

Hello I have all the source code for a project. I need the project compiled. I will any one t o help.

You need the whole SDK, or a Java IDE.
Look at this: http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/javac.html

Similar Messages

  • Wsdl trouble - WILL PAY FOR IMMEDIATE HELP

    I'm having trouble consuming a webservice - code works in PHP
    but coldfusion keeps getting back a null value. The function only
    takes 1 parameter, of which I'm sending. I'll paypal you money for
    your help - PM me for details

    > WILL PAY FOR IMMEDIATE HELP
    I do not believe that that is in the spirit of this forum. If
    you post your code here, you will most likely get a quick answer to
    the question anyway.

  • I will pay for who can help me with this applet

    Hi!, sorry for my english, im spanish.
    I have a big problem with an applet:
    I�ve make an applet that sends files to a FTP Server with a progress bar.
    Its works fine on my IDE (JBuilder 9), but when I load into Internet Explorer (signed applet) it crash. The applet seems like blocked: it show the screen of java loading and dont show the progress bar, but it send the archives to the FTP server while shows the java loading screen.
    I will pay with a domain or with paypal to anyone who can help me with this problematic applet. I will give my code and the goal is only repair the applet. Only that.
    My email: [email protected]
    thanks in advance.
    adios!

    thaks for yours anwswers..
    harmmeijer: the applet is signed ok, I dont think that is the problem...
    itchyscratchy: the server calls are made from start() method. The applet is crashed during its sending files to FTP server, when finish, the applet look ok.
    The class I use is FtpBean: http://www.geocities.com/SiliconValley/Code/9129/javabean/ftpbean/
    (I test too with apache commons-net, and the same effect...)
    The ftp is Filezilla in localhost.
    This is the code, I explain a little:
    The start() method calls iniciar() method where its is defined the array of files to upload, and connect to ftp server. The for loop on every element of array and uploads a file on subirFichero() method.
    Basicaly its this.
    The HTML code is:
    <applet
           codebase = "."
           code     = "revelado.Upload.class"
           archive  = "revelado.jar"
           name     = "Revelado"
           width    = "750"
           height   = "415"
           hspace   = "0"
           vspace   = "0"
           align    = "middle"
         >
         <PARAM NAME="usern" VALUE="username">
         </applet>
    package revelado;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import javax.swing.*;
    import java.io.*;
    import javax.swing.border.*;
    import java.net.*;
    import ftp.*;
    public class Upload
        extends Applet {
      private boolean isStandalone = false;
      JPanel jPanel1 = new JPanel();
      JLabel jLabel1 = new JLabel();
      JLabel jlmensaje = new JLabel();
      JLabel jlarchivo = new JLabel();
      TitledBorder titledBorder1;
      TitledBorder titledBorder2;
      //mis variables
      String DIRECTORIOHOME = System.getProperty("user.home");
      String[] fotos_sel = new String[1000]; //array of selected images
      int[] indice_tamano = new int[1000]; //array of sizes
      int[] indice_cantidad = new int[1000]; //array of quantitys
      int num_fotos_sel = 0; //number of selected images
      double importe = 0; //total prize
      double[] precios_tam = {
          0.12, 0.39, 0.60, 1.50};
      //prizes
      String server = "localhost";
      String username = "pepe";
      String password = "pepe01";
      String nombreusuario = null;
      JProgressBar jProgreso = new JProgressBar();
      //Obtener el valor de un par�metro
      public String getParameter(String key, String def) {
        return isStandalone ? System.getProperty(key, def) :
            (getParameter(key) != null ? getParameter(key) : def);
      //Construir el applet
      public Upload() {
      //Inicializar el applet
      public void init() {
        try {
          jbInit();
        catch (Exception e) {
          e.printStackTrace();
      //Inicializaci�n de componentes
      private void jbInit() throws Exception {
        titledBorder1 = new TitledBorder("");
        titledBorder2 = new TitledBorder("");
        this.setLayout(null);
        jPanel1.setBackground(Color.lightGray);
        jPanel1.setBorder(BorderFactory.createEtchedBorder());
        jPanel1.setBounds(new Rectangle(113, 70, 541, 151));
        jPanel1.setLayout(null);
        jLabel1.setFont(new java.awt.Font("Dialog", 1, 16));
        jLabel1.setText("Subiendo archivos al servidor");
        jLabel1.setBounds(new Rectangle(150, 26, 242, 15));
        jlmensaje.setFont(new java.awt.Font("Dialog", 0, 10));
        jlmensaje.setForeground(Color.red);
        jlmensaje.setHorizontalAlignment(SwingConstants.CENTER);
        jlmensaje.setText(
            "Por favor, no cierre esta ventana hasta que termine de subir todas " +
            "las fotos");
        jlmensaje.setBounds(new Rectangle(59, 49, 422, 30));
        jlarchivo.setBackground(Color.white);
        jlarchivo.setBorder(titledBorder2);
        jlarchivo.setHorizontalAlignment(SwingConstants.CENTER);
        jlarchivo.setBounds(new Rectangle(16, 85, 508, 24));
        jProgreso.setForeground(new Color(49, 226, 197));
        jProgreso.setBounds(new Rectangle(130, 121, 281, 18));
        jPanel1.add(jlmensaje, null);
        jPanel1.add(jlarchivo, null);
        jPanel1.add(jProgreso, null);
        jPanel1.add(jLabel1, null);
        this.add(jPanel1, null);
        nombreusuario = getParameter("usern");
      //Iniciar el applet
      public void start() {
        jlarchivo.setText("Start() method...");
        iniciar();
      public void iniciar() {
        //init images selected array
        fotos_sel[0] = "C:/fotos/05160009.JPG";
        fotos_sel[1] = "C:/fotos/05160010.JPG";
        fotos_sel[2] = "C:/fotos/05160011.JPG";
         // etc...
         num_fotos_sel=3; //number of selected images
        //conectar al ftp (instanciar clase FtpExample)
        FtpExample miftp = new FtpExample();
        miftp.connect();
        //make the directory
         subirpedido(miftp); 
        jProgreso.setMinimum(0);
        jProgreso.setMaximum(num_fotos_sel);
        for (int i = 0; i < num_fotos_sel; i++) {
          jlarchivo.setText(fotos_sel);
    jProgreso.setValue(i);
    subirFichero(miftp, fotos_sel[i]);
    try {
    Thread.sleep(1000);
    catch (InterruptedException ex) {
    //salida(ex.toString());
    jlarchivo.setText("Proceso finalizado correctamente");
    jProgreso.setValue(num_fotos_sel);
    miftp.close();
    //Detener el applet
    public void stop() {
    //Destruir el applet
    public void destroy() {
    //Obtener informaci�n del applet
    public String getAppletInfo() {
    return "Subir ficheros al server";
    //Obtener informaci�n del par�metro
    public String[][] getParameterInfo() {
    return null;
    //sube al ftp (a la carpeta del usuario) el archivo
    //pedido.txt que tiene las lineas del pedido
    public void subirpedido(FtpExample miftp) {
    jlarchivo.setText("Iniciando la conexi�n...");
    //make folder of user
    miftp.directorio("www/usuarios/" + nombreusuario);
    //uploads a file
    public void subirFichero(FtpExample miftp, String nombre) {
    //remote name:
    String nremoto = "";
    int lr = nombre.lastIndexOf("\\");
    if (lr<0){
    lr = nombre.lastIndexOf("/");
    nremoto = nombre.substring(lr + 1);
    String archivoremoto = "www/usuarios/" + nombreusuario + "/" + nremoto;
    //upload file
    miftp.subir(nombre, archivoremoto);
    class FtpExample
    implements FtpObserver {
    FtpBean ftp;
    long num_of_bytes = 0;
    public FtpExample() {
    // Create a new FtpBean object.
    ftp = new FtpBean();
    // Connect to a ftp server.
    public void connect() {
    try {
    ftp.ftpConnect("localhost", "pepe", "pepe01");
    catch (Exception e) {
    System.out.println(e);
    // Close connection
    public void close() {
    try {
    ftp.close();
    catch (Exception e) {
    System.out.println(e);
    // Go to directory pub and list its content.
    public void listDirectory() {
    FtpListResult ftplrs = null;
    try {
    // Go to directory
    ftp.setDirectory("/");
    // Get its directory content.
    ftplrs = ftp.getDirectoryContent();
    catch (Exception e) {
    System.out.println(e);
    // Print out the type and file name of each row.
    while (ftplrs.next()) {
    int type = ftplrs.getType();
    if (type == FtpListResult.DIRECTORY) {
    System.out.print("DIR\t");
    else if (type == FtpListResult.FILE) {
    System.out.print("FILE\t");
    else if (type == FtpListResult.LINK) {
    System.out.print("LINK\t");
    else if (type == FtpListResult.OTHERS) {
    System.out.print("OTHER\t");
    System.out.println(ftplrs.getName());
    // Implemented for FtpObserver interface.
    // To monitor download progress.
    public void byteRead(int bytes) {
    num_of_bytes += bytes;
    System.out.println(num_of_bytes + " of bytes read already.");
    // Needed to implements by FtpObserver interface.
    public void byteWrite(int bytes) {
    //crea un directorio
    public void directorio(String nombre) {
    try {
    ftp.makeDirectory(nombre);
    catch (Exception e) {
    System.out.println(e);
    public void subir(String local, String remoto) {
    try {
    ftp.putBinaryFile(local, remoto);
    catch (Exception e) {
    System.out.println(e);
    // Main
    public static void main(String[] args) {
    FtpExample example = new FtpExample();
    example.connect();
    example.directorio("raul");
    example.listDirectory();
    example.subir("C:/fotos/05160009.JPG", "/raul/foto1.jpg");
    //example.getFile();
    example.close();

  • Will pay for Flash programming

    Hi folks,
    I have been let down by some programmers and need a web site
    built similar
    to the Business Card application at
    http://www.premierlook.com/xangocard.php
    It is a fairly straight-forward application of developing a
    form in Flash. A
    shopping cart addition would be greatly appreciated also.
    Prospective designers wishing to undertake this job and
    complete within 36
    hours can send me an email at [email protected]
    Thanks for your help.
    Richard

    Will Pay for Consulting on Java Swing Issue
    Really?
    863221 wrote:
    ..*Offer*:     I will pay a reasonable consulting fee ..I will read your post (and give it serious consideration and a reply) for $1500 US. The ball is in your court.

  • Can you set up family sharing where everyone will pay for himself?

    I really like the feature but I don't like the fact that organiser should pay for everyone's purchases? Can it be set up to keep payments separate and just share the content?

    It's not a question of having an out of control family.  Our kids work for their pocket money - which they can choose to spend on iTunes if they like.  They have had their own accounts for some time now, linked to their own bank accounts - and they buy their own things with the money that they have earned.  As an extra, if they are given an iTunes voucher for a birthday present or something, they load it onto their own account, but this is by no means the only way that they buy things.
    Doesn't feel out of control to me.
    Now it's suggested that we need to pay for everything they want, rather than them?  Not for me thanks.  But it's a shame that by choosing to keep this set up, we are losing the ability to share purchases, in the same way that we would when buying a hard copy CD, book or magazine.
    Surely most families have a similar set up once the children are old enough to have their own bank accounts?  Or am I so very very old fashioned?

  • Very strange Issue, and cannot find a reasonable solution or Tech Support help / Will PAY for HELP !!

    So, without going into great details that cannot reasonably be explained, the scenario goes a little like this:
    When editing a PDF, and with nothing else open on the computer, Adobe Acrobat Pro XI tends to "hang up" and become unresponsive. The only plausible solution is to force command and restart Acrobat in hopes it will open correctly the next time. Sometimes this works, other times - nope .. Does not resolve the problem. So - can anyone recommend a solution? I have contacted help and they had to to delete a Adobe Preference file, and this seemed to work while I still had them on live chat. Once offline, it happened again.
    Here is the really weird thing, I thought that I fixed the issue (as I am doing this for my boss on his Macbook Pro) and was able to quickly edit a PDF .. but when I handed the computer over to him - literally in only 2 minutes - he proceeded to edit the same document and was not able to. He got the never ending rotating circle of death
    So - that is problem #1
    Problem #2 is with the inability my boss has to use CC offline. I have personally reconnected to our CC account and verified all settings, and when I perform my tests at the office, everything seems fine and all programs work as should. However, he is now on business travel and says the "Trial Expired" keeps popping up. What is going on? This is literally frustrating him and me with what little knowledge I can assist with resolving the trial expired issue. How many days can you be offline with CC? Tech support says up to 99 days .. Clearly 4 days is ridiculous and I am not able to duplicate the scenario when I have his computer but what would it work for me and not him?
    I just need to resolve this whole Adobe Acrobat issue as to finally get it resolved and fixed once and for all.
    BTW, called in outside computer help from a local company - and the computer guy was working to get it fixed, but it seems even with live chat or phone support - it has now been escalated to Tech Support 2 .. This make any sense or logic? I believe he has uninstalled and reinstalled Acrobat and now it is only creating more issues. I think he tried to install a trial version and activate the subscription but it failed.
    Any HELP? We are desperate and I'll even pay via PayPal to get a resolution to this problem if any recommendation leads to a solid solution. Guaranteed !!

    Actually I also noticed that usual heat with wifi and game play.. However this was extreme heat. I wasn't able to hold it for long time and had to drop it.
    So can that bulge can be ignored and should I start using it back again. Though that bulge appeared after that heating issue.
    Beside the hardware, safety would be my bigger concern. Perhaps because I have heard few incidents with mobile phones where battery generated heat and caused some defect in bodies and continued use resulted in a blast in battery causing physical harm.
    So if its advised to try it by charging 100% and monitoring backup time or any other advise.

  • I will pay for help, Media Encoder and Premiere Pro C4 won't work together

    I know someone has two easy answers...help, help.
    Big Problem one, exporting from Premiere C4, forced into using Media Encoder, which sit there and won't encode from the project/timeline.
    The project is even small, 7 minutes, and I just want to me a AVI file and maybe Flash and Media Player.  Is that too much to ask.
    Then the versioncue.dll, decide to not let me right click in explorer and other links, get a windows error, and again, stuck with nothing.
    Please, I will send someone a gift card if they can help me, really. $25-$50...depending on if you have the solutions.
    [email protected]
    828-778-4854

    Stan, that's correct, however, it's a new computer now.  And yes, I want to
    export to avi from the premiere time line.
    One thing that is weird, I can add to Media Encoder only finished encoded
    files, say to send to a client in a media player
    or flash format, and all works well.  It's only the Premiere C4 project
    export????
    Thanks for any help you may be able to give me.
    Ernie Sigmon

  • If I buy Photoshop and pay monthly, I will pay for 12 months only right?

    I want to buy just the product, will I have to subscribe and pay monthly for a year or continue paying until i end up my subscription?

    Adobe has a plan to make it's software owners very uncomforatable. There efforts will include not including new software (Muse etc...) in the stand alone products and not upgrading the stand alone products after Creative Suite 6. You can also expect files that were created in the Creative Cloud in the near future will not be openable in your stand alone version. Then there is discussion of whole new file types that your software will not open at all. Just remember you work for them. OBEY!

  • Will Pay for Expert DW CS4 advice/training

    I am new to Dreamweaver and want to solicit work so I need to
    get up and running in a hurry. I have tried online courses,
    tutorials, forums and the like. Ok, my head is about to explode
    here. I want expert training and here's my pitch. I own 1br condos
    on Panama City Beach and Mexico Beach Florida. Unfortunately this
    is a cultural wasteland so training locally is not an option. I
    will offer someone, or a couple, to spend the weekend in the condo
    of their choice. They, in turn, must spend Saturday - for 6-8hours,
    showing me how to use Dreamweaver CS4, build sites, widgets, etc.
    You can have the unit for two nights and three days. I do have
    spring break bookings but am not solid yet.
    You must be able to clearly demonstrate to me you have the
    expertise. How you do that is as important to me as your body of
    work.
    Disclaimer - If I have violated a forum rule, by fact or
    ignorance, I apologize as my frustration is driving the bus right
    now!

    Contact me offline, please --> forums at great-web-sights
    dot com.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "pcmartini" <[email protected]> wrote in
    message
    news:gnmli7$jb4$[email protected]..
    >I am new to Dreamweaver and want to solicit work so I
    need to get up and
    > running in a hurry. I have tried online courses,
    tutorials, forums and the
    > like. Ok, my head is about to explode here. I want
    expert training and
    > here's
    > my pitch. I own 1br condos on Panama City Beach and
    Mexico Beach Florida.
    > Unfortunately this is a cultural wasteland so training
    locally is not an
    > option. I will offer someone, or a couple, to spend the
    weekend in the
    > condo of
    > their choice. They, in turn, must spend Saturday - for
    6-8hours, showing
    > me how
    > to use Dreamweaver CS4, build sites, widgets, etc. You
    can have the unit
    > for
    > two nights and three days. I do have spring break
    bookings but am not
    > solid
    > yet.
    > You must be able to clearly demonstrate to me you have
    the expertise. How
    > you
    > do that is as important to me as your body of work.
    > Disclaimer - If I have violated a forum rule, by fact or
    ignorance, I
    > apologize as my frustration is driving the bus right
    now!
    >

  • Help - my teenager wants a blackberry and I already pay for three phones!

    Looking for help or advice on a plan that includes a blackberry.  i have three lines in family program that cost $153 every month for unlimited text and minimum amount of talking minutes.  they don't talk, they text.  I really don't want to spend any more money each month but she is really hoping for a blackberry for her birthday.  any advice?  any way to save money on this?

    mof wrote:
    ... they don't talk, they text.  I really don't want to spend any more money each month but she is really hoping for a blackberry for her birthday.  any advice?  any way to save money on this?
    You said "teenager" - are we talking 13, 16, 18??  IMHO, a 13 or 16 year old doesn't need a Blackberry, but that's just my opinion.  The major advantage of a BB over other smartphones is its efficiency in dealing with email, and the ability to conference via BBM.  You said they "text" - (and I know they do!!!).  Does your teen do a lot with email?  Do her friends have BB's that she would be using BBM to communicate?  If the answer to these is NO, then she probably doesn't NEED a BB.  She may WANT one, but if all she does is a lot of texting, then she may be just as happy with  something that does awesome texting.
    However, if she is 18, or 19, and working, and has her heart set on a BB, perhaps suggest you will pay for the data for, say, 3 months as a birthday gift, and she has till then to figure out how to pay for that portion of the bill after that point.  In other works, if she wants the BB, then there is a cost.  And at 18 or older, she xcan be responsible for that cost.
    So, that's my advice.  You are welcome to do what you like with it.    We've got 4 kids, now 19 and 20 somethings - 2 have their own plans, 2 still on our family plan and getting the phones that WE say they will have.  They know if they want more, they will pay their own bills.  One daughter has the Intensity II and cares little about data; the oldest son has had every iPhone since it was introduced and has them pre-ordered so he gets it as soon as he can.  But they pay their own, and can do what they like.

  • HT4528 Help. New ID. What will I have to pay for?

    I changed my email address and did not know that I could not change my phone and pad to the new ID. I just wanted to get rid on the old email. I cant reactivate it I have tried. I read in here that if I do change my phone and pad to the new ID I will have to pay for stuff again. What stuff? Apps? Books? Music? I dont so much care about the apps and books. I DO NOT want to pay for music again. Help!

    Hi pinkcoho,
    Welcome to the Support Communities!
    The article below may be able to help you with this issue.
    Click on the link to see more details and screenshots. 
    Frequently asked questions about Apple ID
    http://support.apple.com/kb/HT5622?viewlocale=en_US
    Using your Apple ID for Apple services
    http://support.apple.com/kb/HT4895
    Can I change the name of my Apple ID?
    Yes. For example, if you get a new email address, you can change your Apple ID from your old address to your new address. For more information, follow the steps in this article.
    Note: @mac.com and @me.com Apple IDs cannot be renamed.
    I have purchased music, apps, or books with multiple Apple IDs. How can I get all of this content onto my iOS device?

    First, you need to copy all of your purchased content so it is on the same Mac or PC with iTunes. This computer should be the one you sync your device with. For more information on how to move your content, see these articles:
    Mac:  iTunes for Mac: How to copy purchases between computers
    PC:  iTunes for Windows: How to copy purchases between computers
    Next, authorize your computer to play content with each Apple ID in iTunes. Once your computer is authorized for all your content, it can be synced to your iPhone, iPad, or iPod touch.  
    I hope this information helps ....
    Have a great day!
    - Judy 

  • I purchased gems from a game and didnt get them because my method was declined i want to remove the order so i dont pay for it and so i can update my other apps and i want to remove the method i will be thankfull if someone help me

    i purchased gems from a game and didnt get them because my method was declined i want to remove the order so i dont pay for it and so i can update my other apps and i want to remove the method i will be thankfull if someone help me without updating the payment method i cant update my apps in my iphone i want to remove the method and remove the order i dont want it

    Click here and ask the iTunes Store staff for assistance.
    (125742)

  • I initially downloaded the application and was able to gain access to all of my photos through album, photostream, fb, etc. Now it will not pull any. After deleting the app and attempting to download it, it says I must pay for it (again) any help would be

    I initially downloaded the application and was able to gain access to all of my photos through album, photostream, fb, etc. Now it will not pull any. After deleting the app and attempting to download it, it says I must pay for it (again) any help would be appreciated.

    Sounds like a verification issue on whatever marketplace you bought PS Touch from. Did you try contacting Google or Apple to see what they say?

  • Hi, i have a macbook pro and i want to update my iPhoto and iMovie will i be charged for the update and if i will how do i know if the update is free or I'm paying for it please help

    Hi, i have a macbook pro and i want to update my iPhoto and iMovie will i be charged for the update and if i will how do i know if the update is free or I'm paying for it please help

    Thank you soo much

  • How do I pay for my storage plan when I don't have a credit card? Last year I used an iTunes voucher but can't find that option this year. Please help!

    How do I pay for my storage plan when I don't have a credit card? Last year I used an iTunes voucher but can't find that option this year. Please help!

    Create an iTunes credit by redeeming a gift card and it will be charged to your credit.  From http://support.apple.com/kb/ht4874:
    "payment methods accepted include iTunes store credit, credit cards, and debit cards"

Maybe you are looking for