Why Clear / Save Buttons Are Not Working
Sep 27, 2014
why CLEAR button not sweeping text(I tried t1.setText(null);, but it not working. And second, in SAVE button is same problem, it is not working. I want it to saved text go to SAVED frame. What i need to write.
public class panabut {
public static void main(String[] args) {
JFrame f = new JFrame("Buttons");
f.setSize(400, 400);
f.setLocationRelativeTo(null);
f.setDefaultCloseOperation(f.EXIT_ON_CLOSE);
f.setVisible(true);
JPanel p = new JPanel();
f.add(p);
JButton b = new JButton("Register");
[code]....
View Replies
ADVERTISEMENT
Oct 13, 2009
I have 5 radio buttons in my gui, I have a reset button which I have resetting everything else but now I am looking to remove the dot from the selected RB when you press the reset.
View Replies
View Related
Jan 15, 2014
Here is the code I wrote:
import javax.swing.*;
import java.awt.MenuBar;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class NewCalculator implements ActionListener {
//assign button clicked number and answer onto variables.
[Code] .....
Also what is the code I need to use to do the percentage and square root calculation in the calculation. Cos I am not sure about the sign I am required to use to do the calculation.
The if statement is where the code to make the clear button (C and CE) work.
View Replies
View Related
Sep 7, 2014
I am learning out design patterns and doing a little fun project on Model Control View (MCV). I got the concept down, it is pretty simple for the most part. However my buttons are not working.
Here is the code:
public class Controller
{
private Model model;
private View view;
Controller(Model model, View view) {
this.model = model;
this.view = view;
[code]....
It runs but nothing. My other questions is how can I make a box that will print the results.
View Replies
View Related
May 6, 2014
import javax.swing.*;
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.GridLayout;
import java.awt.event.*;
[code]....
My issues is at the bottom, I can't get the clear button to clear, well it clears but it also show the JOptionPane. I couldn't find the edit button on the page
View Replies
View Related
Sep 25, 2012
How to force browser to open/save/save as the file from server instead of browser cache.
I am creating a csv file through a pl/sql procedure and forwarding the link to user once user clicks on link he downloads the file, however if the same thing is repeated then browser returns the old cached file instead of new file generated on server.
View Replies
View Related
Apr 2, 2014
How to clear console screen ? I am using Linux machine.
1) Runtime.getRuntime().exec("clear"); // this is not working. Not clearing the screen
2) for ( int i = 0; i < SOME_NUMBER; i++)
System.out.println();
2nd way is working but i think it is not a good option as i need to move scroll bar again and again.
View Replies
View Related
Aug 12, 2014
I have a code that clear old text then add new text to text file afterthat download the file but the problem my code dose not add new text
FileInputStream fileToDownload ;
private static final int BYTES_DOWNLOAD = 1024;
response.setContentType("text/plain");
String name = request.getParameter("n");
String text = new String(request.getParameter("text").getBytes("iso-8859-1"), "UTF-8");
[Code] ....
How to clear old text then add new text to text file
View Replies
View Related
May 26, 2014
Follow the //? FIRST and SECOND notes, then I understood that Java has GOTO as Keyword for future versions and that usually one can avoid GOTO using break inside the cycles, but I need a jump( salto) in the code.
import java.util.Scanner;
public class ArrayOrdinati {
public static void main (String[] args){
int[] Array = {5,3,1};
int e=Array.length;
int b;
[Code] .....
View Replies
View Related
May 2, 2014
how to clear my java output console?
View Replies
View Related
May 11, 2014
I have wrote the method delete turtle below. Which is part of turtle collection (Hashmap)
public void deleteTurtle(String name) {
Iterator iterate = turtles.keySet().iterator();
while(iterate.hasNext()) {
String key = (String)iterate.next();
if(key.equals(name)) {
iterate.remove();
} else {
setErrorMessage("notFound");
}
}
}
I need to now modify it so the method ensures that the turtles shape collection is cleared before the Turtle object is deleted.
View Replies
View Related
Jul 10, 2014
I have following code
int id1=1;
String city1="Dehradun";
float rupee1=2.1f;
double salary1=2.123;
[code]....
But when i again view it using datainputstream it display original Values.how to view correct data written from outputstream as it is in textpad file
View Replies
View Related
Apr 26, 2014
I've got my clear button to work on most of the stuff I want, however I cant figure out how to fix the price to stop adding up. e.g. hit a button image with a price of 599.99, hit the clear button to empty, select price of 599.99 again then it display 1199.98.
sofa method
if (source == jBSofa) {
System.out.println("Sofa"); {
dTotal = dTotal + 599.99;
jTotal.setText(Double.toString(dTotal));
jTotal.setText(String.format("%.2f", dTotal));
}
Reset method
private void Reset() {
jTTotal.setText(" ");
jTotal.setText(" "); //sub total clear
jTTotalTotal.setText(" ");
Attached image(s)
View Replies
View Related
Oct 20, 2014
I am trying to clear all graphical objects of a certain type(all trees in particular). I have never had any issues doing so, and this method normally works well along with these variables:
Java Code:
public static ArrayList<GRect> historyT;
public static ArrayList<GOval> historyL;
public static GRect trunk;
public static GOval leave;
public void deleteTrees() {
//clears all tree trunks and leaves
[Code]...
That is this normally worked until I started added more trees to the screen after they had all been erased. What happens is that it won't clear all of them unless the max has been reached, that is 6. It will remove all trees up till the last one if the max has not been reached. In other words here is my screen before the clear all if the max has not been reached(* is a tree, _ is erased): ****
Here is it after: _ _ _ _ *
So my question is, is why aren't all the trees deleted? Why does it leave one left behind?
View Replies
View Related
May 7, 2014
I'm having a small problem using a jTable.
After calling the .clearSelection() methode of the table object, the cell clicked in when selecting the table row, keeps it's focus.
How do I remove the focus of the cell?
View Replies
View Related
Mar 25, 2015
package com.example.imc;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
[Code] ....
View Replies
View Related
Mar 31, 2014
I am very Java illiterate and I need to know how would i set all the variables in the first class to null or 0 to make a new method to clear everything.
import java.util.Arrays;
import java.util.Scanner;
public class studentMethods
{
private double totalScore;
private int count;
[Code] ....
View Replies
View Related
Mar 30, 2014
I need to design the layout of this calculator and also add one more button that clears textbox strings one by one instead of whole.
import javax.swing.*;
import java.awt.FlowLayout;
import java.awt.event.*;
public class Calculator extends JFrame{
double value1;
double value2;
String operator;
double result;
[Code] .....
View Replies
View Related
Nov 9, 2014
I'm back with a question about the Black Jack assignment. I've created a working game that works for one round, as well as a reset button that's able to clear the board of the old hand. However the runGame() loop, which checks whether a player has played his hand seems to freeze the program the second time around
private void initNewGame(){
dealer.addCard();
for(int i = 0; i < numberofplayers; i++){
players[i].addCard(); //draws card, adds score and paints card to the board
players[i].setStatus(false); //makes the buttons usable in the players[] class
[Code] .....
I know it's probably not optimal having an while loop constantly running to check the status, but I can't seem to figure out why it freezes.
View Replies
View Related
Apr 10, 2014
I am developing an application to share my client screen with server, it is working well on swing. But i want to develop as web application, i am trying to using applet. But i am facing the fallowing problem..,
1) The Applet screen also open and project also running well on server mechine. But unable to see the client screen on the server.
2) The problem may be to display the JDesktopPane or JInternalFrame.
My working Server Code extends withe JFrame..Java Code:
package remoteserver;
import java.awt.BorderLayout;
import java.awt.Container;
import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;
import javax.swing.JApplet;
import javax.swing.JDesktopPane;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
[code]....
View Replies
View Related
Mar 15, 2014
I just started using java because i want to create a simple web service that will take some values from within a url and save those values in variables.
To be more specific:
For my project I use the Spring Tool Suite.
I want to be able to enter a URL in a browser.. something like "localhost:8080/test?name=Root". When I hit Enter a page will be displayed showing "Hello Root" if the name in the URL is Root or "Hello User" for any other name.
I accomplish that with this code:
Java Code:
String UserName = "Empty";
@RequestMapping("/test")
public @ResponseBody String username(@RequestParam(value="name")String name){
if (name == "Root")
UserName = "Hello" + name;
else
UserName = "Hello User";
return UserName;
} mh_sh_highlight_all('java');
My problem is that it if I enter Root as a name in the URL it doesn't recognize it and it shows "Hello User".
I tried Java Code: << if (name.toString() == "Root") mh_sh_highlight_all('java'); but no luck.
How exactly I should reform this code in order to make it work?
View Replies
View Related
Apr 30, 2014
Here my code . Iam trying to open text file in window_pane it will open when i click on save it will ask destination to save file if i save example like Read.txt it will save...when i go and check in that folder Read.txt file won't found...what is the error ....
Java Code:
import javax.swing.*;
import javax.swing.filechooser.FileFilter;
import javax.swing.filechooser.FileNameExtensionFilter;
import java.io.*;
import java.net.MalformedURLException;
import java.awt.*;
import java.awt.event.*;
public class Read extends JFrame
[Code] .....
View Replies
View Related
Jan 28, 2015
I have a program that asks you for your password and if it is incorrect it reduces your attempts until you are at zero, but I want to be able to tell the user what passwords they have attempted when they run out of attempts. I've tried a couple of things but how to get it to work. This is my code:
import javax.swing.JOptionPane;
public class PasswordV4 { //Begin Class
public static void main(String[] args) { //Begin main program
//initialize variable
int passwordAttempt = 5;
int value = 0;
[Code] ....
View Replies
View Related
Apr 30, 2014
Here my code am trying to open text file in window_pane it will open when i click on save it will ask destination to save file if i save example like Read.txt it will save...when i go and check in that folder Read.txt file won't found..
import javax.swing.*;
import javax.swing.filechooser.FileFilter;
import javax.swing.filechooser.FileNameExtensionFilter;
import java.io.*;
import java.net.MalformedURLException;
import java.awt.*;
import java.awt.event.*;
[code]....
View Replies
View Related
Apr 10, 2015
My JavaFX code like this:
WritableImage image = scene.snapshot(null);
File outputFile = new File("C:PSBJavaFXApplication1src est0.jpg");
ImageIO.write(SwingFXUtils.fromFXImage(image, null), "jpg", outputFile);
When open this jpg, its background is in orange color. For png type, it works great.
View Replies
View Related
Jul 26, 2014
I'm trying to change the value of bricks in my save file and for some reason it can't read the information.
public void addRecords(int brick, int log, int stone, int house){
x.format("%s%s
%s%s
%s%s
%s%s", "brick", " "+brick, "log", " " +log, "stone", " "+stone, "house", " "+house);
}
This writes information to my files. ^
public void addResource(String resource, int amount){
openFile();
readfile check = new readfile();
switch(resource){
case "brick":
[Code] .....
In my case "brick", It doesn't set the value when I try to read it. Here is the readResource method.
public int readResource(String resource){
System.out.println("Looking for " + resource);
String res = resource;
openFile();
while(x.hasNext()){
[Code] ....
Short version:
brick = check.readResource("brick");
This doesn't set brick to any value.
View Replies
View Related