This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 188560 - Issue with retrieving parameters in Applet
Summary: Issue with retrieving parameters in Applet
Status: RESOLVED WONTFIX
Alias: None
Product: java
Classification: Unclassified
Component: Unsupported (show other bugs)
Version: 6.x
Hardware: PC Windows 7 x64
: P3 normal (vote)
Assignee: David Strupl
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-07-10 18:04 UTC by suryaprakash
Modified: 2011-11-16 16:39 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description suryaprakash 2010-07-10 18:04:31 UTC
take a simple example written in IDE6.9
/////////////////////////////////////////////////////////////////////////////
import java.awt.*;
import java.applet.*;
/*<applet code="Appletfact" width=200 height=200>
<param name=op1 value=6>
</applet>*/
public class Appletfact extends Applet
{
String str;

public void start(){
str=getParameter("op1");  // this value returns null in IDE
System.out.println(str);
}
public void paint(Graphics g){
g.drawString(str,10,20);
    }
}
//////////////////////////////////////////////////////////////////////////////
getParameter is not supported in this IDE6.9 it always returns null value.
please look into this issue.
Comment 1 David Strupl 2010-09-23 09:16:00 UTC
I am closing all reports in category Java/Unsupported as wontfix. These should
be dead issues --- if the reported cases are against some live part of the
NetBeans IDE please reopen and we can discuss to which category they belong.