The Artima Developer Community
Sponsored Link

Java Answers Forum
How can i convert a java program in an applet?

1 reply on 1 page. Most recent reply: Apr 12, 2006 2:28 PM by M Adawi

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 1 reply on 1 page
gianluca Del Vecchio

Posts: 7
Nickname: vedder1981
Registered: Apr, 2006

How can i convert a java program in an applet? Posted: Apr 4, 2006 8:12 AM
Reply to this message Reply
Advertisement
I have developed in java a program that allow to capture a screenshot and store it into a jpg file... but i need to convert this java program in an applet..This is the source code:

import java.awt.AWTException;
import java.awt.Robot;
import java.awt.Rectangle;
import java.awt.Toolkit;
import java.awt.image.BufferedImage;
import java.io.*;
import javax.imageio.ImageIO;

class ScreenCapture {
public static void main(String args[])
throws AWTException, IOException {
// capture the whole screen
BufferedImage screencapture = new Robot ().createScreenCapture(new Rectangle(Toolkit.getDefaultToolkit().getScreenSize()) );
File file = new File("screencapture.jpg");
ImageIO.write(screencapture, "jpg", file);
}
}

Thanks to everybody! i am waiting for your help!


M Adawi

Posts: 9
Nickname: adawi
Registered: Mar, 2006

Re: How can i convert a java program in an applet? Posted: Apr 12, 2006 2:28 PM
Reply to this message Reply
Actually I don't know an explicent answer, but try this

Extends Applet class.

use AppletViewer tool to run it

or write an applet tag on html file

and of-course read the applet class document

sorry I did not use applets for long time. The good thing is that, I wanted to read an screen-shot and write it to jpg.

so thanks

Flat View: This topic has 1 reply on 1 page
Topic: I want to export all the instructions contained in the main in a procedure Previous Topic   Next Topic Topic: Which is the best component to make 2D games?

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use