How To Pass Values To A New Frame
Nov 28, 2014
I'm new to Java and I'm trying to pass several values from one frame to another. I've searched around and most codes I've come across are from auto generated GUI code. This what I've been trying to do
Frame1
private class SubmitButtonListener implements ActionListener {
public void actionPerformed (ActionEvent e) {
Frame2 f2 = new Frame2();
//call setValue from Frame2
f2.setValue(4.0);
f2.setVisible(true);
}
}
Frame2
private double val;
public double getvalue()
{
return val;
}
public void setValue(double v)
[code]...
View Replies
ADVERTISEMENT
Aug 29, 2014
I need a way to store the pixels values currently on the screen and compare them to the values on the first frame. Right now I'm using glreadpixels as follows:
currentBuffer= BufferTools.reserveByteData(mapSize);
glReadPixels(mapStartX, mapStartY, mapWidth, mapHeight, GL_BLUE, GL_UNSIGNED_BYTE, currentBuffer);
for (int i = 0; i < mapSize; i++) {
if (currentBuffer.get(i) != baseBuffer.get(i)) {
//Do nothing
continue;
}
//Do something
}
This works perfectly fine but turns out to be a real bottleneck, dropping the fps to a third of what it was. Is there any quicker way? All I'm after is speed, I don't even need to show it on the screen if the comparison is made "behind the scene".
View Replies
View Related
Aug 12, 2014
I am trying to pass values from JSP Page to Servlets but I am getting a NullPointerException
Here is my JSP code
<html>
<head>
<title>Student Registration Form</title>
<style type="text/css">
h3{font-family: Calibri; font-size: 22pt; font-style: normal; font-weight: bold; color:SlateBlue;
text-align: center; text-decoration: underline }
table{font-family: Calibri; color:white; font-size: 11pt; font-style: normal;
[Code]...
View Replies
View Related
Mar 25, 2014
I am trying to retrieve jtext fields and combo box values from another frame and to put them in database but .getText() doesn't return anything ...
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
try{
String sql = "select * from login where uid = ? and pass = ?";
pst = con.prepareStatement(sql);
pst.setString(1, jTextField1.getText());
pst.setString(2, jTextField2.getText());
rs = pst.executeQuery();
if(rs.next()){
[Code] .....
View Replies
View Related
Feb 27, 2015
I have a question in mind that this is my registration form. I am sending these values from HTML form to server and database. I have question that in my case if I click next to Add Another Mobile no in HTML.then a block is genereated and each time a new name is generated.
My Question is if I click 6 times then 6 name attribute are generated. How can I send and differentiate them on my server side.
Because at their I will use something request.getAttribute("Attr_Name");
But they are same. How to do this?.
View Replies
View Related
Jul 19, 2014
Below is the snippet of code
public static void main(String[] args) throws Exception {
String s = "oldString";
reverse(s);
System.out.println(s); // oldString
}
public static void modifyString(String s) {
s = "newString";
System.out.println(s); // newString
}
I thought the first print statement would print "newString" as String is an object, and when we pass objects between methods, changing state of the object in any method reflects across the methods.
View Replies
View Related
Aug 25, 2014
I'm fairly new to Java, I'm very experienced with C++ and C# in which you can pass by reference - extremely useful. Take for example this bit of code in C#:
class MyClass
{
public MyClass(int i)
{
m_i = i;
}
public int m_i;
[Code] ...
Just at the end of this program x.m_i will be equal to 8. As far as I can see this is not possible in Java: you can't pass a double by reference, using a Double will kick in the autoboxing so that won't work either. The only "solution" in Java would be to pass in a double[] (of length 1) or to make a wrapper class, both nasty solutions because a user may want to just hold a double as a member of their class just as I have, for reasons such as not allocating more memory for a class and generally not being bloated.
View Replies
View Related
Apr 10, 2007
E.g:
onblurr="check(this, '<%=company.getId()%>' );return false;"
doing this, function check(field, inputVal) {
alert("companyId:" + inputVal);
}
Gave me the alerted value as :
companyId:<%=company.getId()%>
instead, if the company.getId() --> 30
When I do like this, how to get the value 30 inside the function? i want companyId:30
View Replies
View Related
Mar 23, 2014
Is it possible to pass column name as a parameter using servlets?
I tried using the following code but it doesnt work
String date=request.getParameter("date");
String sql="alter table cs1_cn add " +date+ " boolean";
PreparedStatement ps=conn.prepareStatement(sql);
View Replies
View Related
Nov 7, 2014
Getting JS -> JSF value to Bean class? I have tried with below code:
JSF code:
<h:commandButton styleClass="buttonpos" value="Get Value" action="#{myBean.action}" onclick="document.getElementById('crForm:hiddenInput').value">
<h:inputHidden id="hiddenInput" value="#{myBean.action}"/>
</h:commandButton>
Java Beans
public class CurrencyExchangeBean {
protected static Logger logger = ILogger.getLogger(CurrencyExchangeBean.class);
[Code] .....
View Replies
View Related
Aug 3, 2014
So if I assigned values in arrays like the below:
This is the method in main class:
public static void trainer(){
trainer[] trainerArr = new trainer[4];
trainerArr[0] = new trainer("Ben Yap", "Male", "Kuala Lumpur", 10000, "Yoga");
trainerArr[1] = new trainer("Wilson Ting", "Male", "Kuala Lumpur", 10001, "Kick-boxing");
[Code] .....
How can i pass these arrays into another method in the main class?
View Replies
View Related
Mar 19, 2014
i'm able to login and download pages of a website using httpclient library.but i cannot launch a page on browser after login successful!becouse the browser not remember the username and password of the session so the site show that i'm not logged!
View Replies
View Related
Apr 22, 2014
I am new to the JMS technology. I have written one sample sender and receiver program to pass a string message to the JMS queue and retrieve it back. It is working fine as well. But now, I want to pass a xml file to the JMS queue. Then from there I need to read the XML file and convert it into a Java object Using Jaxb. I know how to convert an XML into java object using Jaxb. But i am unable to send the XML file as a jms message to the listener.
View Replies
View Related
Jan 5, 2014
As the title says, how can I pass a value from one variable to another class?
Example:
So here I'm switching one frame to another, called "redigeraProjekt". Now in this class, I want the value from .getSelectedIndex() pass over to that class. I've tried to use the variable "valIListan" but it cannot find it. Probably because it's "private" (?)
valIListan = listaAllaSpelProjekt.getSelectedIndex();
redigeraProjekt npj = new redigeraProjekt(); // "switching" to another frame
npj.setVisible(true);
this.setVisible(false);
I hope you understand what I'm saying
View Replies
View Related
Jun 25, 2014
Can I pass in a return value in a parameter? I'm trying to do something like this:
Object o = new Object(anotherObject.method());
Where method returns an int. But when I try doing this it calls that method, rather than passing in the return value..
View Replies
View Related
Feb 26, 2015
I'm taking inheritance now and some things look confusing. I'm trying to do the following but the code, in particular, the constructor in subclasses are pointed to be wrong. The constructor in LongestWord is not correct,how to pass the filename into the constructor?
Java Code:
import java.util.Scanner;
import java.io.File;
public abstract class FileProcessor {
protected Scanner input;
public FileProcessor(String filename) throws Exception
[Code] ....
View Replies
View Related
Feb 15, 2013
Why will this NOT validate correctly in my IF Statement? Basically, a user chooses an option from the drop down list. The value is passed to t.jsp (itself) and if the option "All" is chosen, then it does something. If any of the years are chosen, then it does something else.
t.jsp (simplified version of what I want)
<%@ page import="java.sql.*" %>
<%@ page import="java.io.*" %>
<html>
<form method="get" action="t.jsp">
Select Year:
[Code] ....
View Replies
View Related
Aug 13, 2014
i have created a frame with a menu bar displaying contents..now i want to set a username and password to that flame through an applet how to add applet to the frame??
here is my code ..
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
class MenuFrame extends Frame{
String msg="";
int flag=0;
CheckboxMenuItem debug,test;
[Code]...
View Replies
View Related
Apr 13, 2014
I can't seem to add second component to frame what this class creates:
package TestVersion;
import java.awt.Color;
import java.awt.Component;
import javax.swing.JFrame;
import TestVersion.CKeyListener;
import TestVersion.GameWorld;
import TestVersion.MatWood;
public class MYCoreWorld {
[Code] .....
View Replies
View Related
Sep 20, 2014
I created a instance of a class AddItemView, inside StartUpMenuController. I then passed it into the class, the main method is below showing that as well. However when I do this:
else if(e.getSource()==menu.addBtn)
{
new addItem();
}
I get an error, little red line on the bottom of the text. I am testing the frame at the moment to make sure it is what I want before I move on to the Controller side of it. I just want to display it and go from there.
package mainMenu.Home.DataBase;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import addItemBtn.Home.DataBase.AddItemView;
public class StartUpMenuController
{
StartUpMenu menu;
AddItemView addItem;
[code]...
Not sure if this is the issue but the class I am making a new instance of is in a different package. I imported the package though.
View Replies
View Related
Mar 12, 2014
i have been struggling with 2 frames.the question here is, how can you let a frame disappear and let another one appear.im making a game and when i click on start it needs to show another frame.got the whole code here:
import java.awt.Color;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class RushhourStart
{
public static void main(String [] args)
{
JFrame frame = new JFrame();
frame.setSize(700, 700);
frame.setTitle("Rushhour");
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(JFrame. EXIT_ON_CLOSE);
frame.setVisible(true);
[code]...
View Replies
View Related
Mar 3, 2014
using richface 4.
#{rich:element('detailsTable'#{id.No})})
showing syntax error.How to pass the value #{id.No} inside rich:element
View Replies
View Related
Feb 6, 2015
How do I pass the data within an initialized array from inside one method to another method of the same class? Will I need to return the array, assigning it to a temp array, which will then be passed as an argument to the other array? The idea is to create an array for an entire year, and be able to manipulate or edit data for a particular month using the other method.
public class Temperature {
static Scanner input = new Scanner(System.in);
static String [] monthArray = {"January", "February", "March", "April", "May",
"June", "July", "August", "October", "November", "December"};
public static void main(String[] args) {
[Code] .....
View Replies
View Related
Mar 7, 2015
I have a variable <c:set var="var1" value = "myvalue" /> , I want to pass var1 as <%= new customclass().method1(var1) %>.what is the syntax to pass this value.
View Replies
View Related
Feb 11, 2015
public class MagicSquare {
public boolean isSquare(int[][] arr) {
if(arr.length == arr[0].length)
return true;
else
return false;
[Code] ....
View Replies
View Related
Nov 15, 2014
createConnection();
try{
String str = "select * from stocks";
stmt = conn.prepareStatement(str);
ResultSet rs = stmt.executeQuery();
[Code] .....
I have this code in my another package , i want to call it in other package , but i dunno how to do that.
View Replies
View Related