Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I work for a government science based agency that provides a lot of technical information through our website. Web development is not really our strong suit, but we get by. A lot of our current content is delivered via Java applets. Recently we have had feedback from users that they cannot access various bits of the site, because their browsers (primarily Safari and Firefox) have disabled Java due to security issues. Of course this can be fixed in both cases by upgrading and/or changing preferences but it still raises a barrier that might be too high for non savvy users.

So my question is what is the probable future for Java applets? Is this an approach that is likely to become less common and the proportion of browser configurations that can't/won't run them increase? As I mentioned my organisation (and myself) are not web development experts so we don't have a good sense of the trends. Should new content be written in something other than Java applets (our most recently developed content uses JavaScript instead). Should we plan to convert the applets over in response to diminishing support?

share|improve this question
Note that Java (the language in which applets are written) is completely different from Javascript (the language that powers the vast majority of web sites today). It is a good idea to disable Java in your browser (which is probably why you are getting feedback on this) but disabling Javascript will give you a much degraded browsing experience. – Greg Hewgill Jul 16 '12 at 22:18
Thanks Greg, I am aware of the difference ( I wrote the JavaScript for our latest content delivery) but thanks for pointing it out, I'm sure it's a constant source of confusion! – Bogdanovist Jul 16 '12 at 22:20
Yeah, I see you showed that you knew the difference in the second paragraph. The first paragraph said "disabled Java script" which was misleading I think. – Greg Hewgill Jul 16 '12 at 22:21
Ooopps! Yes I see that, it changes the whole meaning of the question. I've edited it now, thanks for that. – Bogdanovist Jul 16 '12 at 22:23
2  
Unfortunately, yes that is what I would recommend. An increasing number of people using newer browsers will be unable to access your existing content. – Greg Hewgill Jul 16 '12 at 22:29
show 2 more comments

2 Answers

up vote 3 down vote accepted

The current trend is pretty clearly toward less support of Java applets in client-side browsers. It never really worked very well and there are now better ways of presenting dynamic information in web sites.

Building a new web site today that relies on a Java applet for content delivery would be a poor technology choice.

share|improve this answer
Why wouldn't new browsers have Java applet support? The latest browsers all seem to support it by default (unless the user went on and disable it himself) – Pacerier Jan 28 at 12:30
@Pacerier: Here are two articles from the last couple of years that show Java is a security hole: f-secure.com/weblog/archives/00002285.html and f-secure.com/weblog/archives/00002413.html. Two weeks ago, Apple disabled Java on OS X for all users: macrumors.com/2013/01/11/… – Greg Hewgill Jan 28 at 17:50
this means that applets can hack users' computers if that's what the applet writer wants.. If your users trust you (for example, I wouldn't have any reason to suspect Runescape.com of hijacking my computer) then there's no problem there isn't it? – Pacerier Jan 29 at 13:03

try this is very useful to you

import java.awt.*;
import javax.swing.JOptionPane;
import java.applet.Applet;
/*<applet code=”Interest” width=200 height=100>
<param name=rate value=monthly>
</applet>*/ //[java question bank][1]
public class Interest extends Applet
{
    String rate;
    public void start()
    {
        String s=JOptionPane.showInputDialog(“enter principal amount”);
        int p=Integer.parseInt(s);
        s=JOptionPane.showInputDialog(“enter rate”);
        int r=Integer.parseInt(s);
        s=JOptionPane.showInputDialog(“enter time”);
        int t=Integer.parseInt(s);
        rate=getParameter(“rate”);
        if(rate.equals(“monthly”))
        {
            double amount=(p*t*r)/(100*12);
            JOptionPane.showMessageDialog(null,”simple interest=”+amount,”simple 
            interst”,JOptionPane.INFORMATION_MESSAGE);
        }
        else
        {
            double amount=(p*t*r)/(100);
            JOptionPane.showMessageDialog(null,”simple interest=”+amount,”simple 
            interst”,JOptionPane.INFORMATION_MESSAGE);
        }
    }
} 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.