Missing IN Or OUT Parameter At Index
Mar 24, 2014
I use :
ResultSet rs = null;
ps_getValue = conn.prepareStatement(s_getValue);
ps_getValue.setString(1, sValue1);
rs = ps_getValue.executeQuery();
Error :
java.sql.SQLException: Missing IN or OUT parameter at index:: 1
View Replies
ADVERTISEMENT
Dec 24, 2014
I would like getting a specific parameter name from the set of request parameters. In particular the name of the 4th parameter in the request parameter set.
View Replies
View Related
Apr 1, 2014
I have written the following test program, but I keep getting the same error: Return type for the method is missing.
Java Code:
import javax.swing.*;
import java.awt.*;
public class BUTTONtest {
private JFrame frame;
private JButton btnOK;
private JButton btnStop;
private JButton btnStop1;
[code]....
View Replies
View Related
Sep 25, 2014
So I'm trying to check if the new coordinates vs original coordinates are diagonal and 1 line further, and if there is a piece there(getNum()) if it's 2 lines further, so I'm trying to return a boolean value then.
so if it's the first if, it returns true, if it's the 2nd it returns true, then I say else for all other scenario's, and return false there, but my compiler says my method is missing a return statement.
public boolean check(int[] d) {
int x,y;
x = loc[0][0];
y = loc[0][1];
int sx = d[0];
int sy = d[1];
[Code] .....
Edit: used a local boolean and returned that after my if's.,
View Replies
View Related
Apr 19, 2014
When I put this code in throw new IllegalStateOperation("SortType is invalid"); it states that it can't find the symbol IllegalStateOperation. What should I do to initialize the symbol/variable IllegalStateOperation?
Here is the entire code: :
class HairSalon implements Comparable<HairSalon> {
static final int sortByService = 0, sortByPrice = 1, sortByTime = 2;
private String service;
private double price;
private int time;
[code]...
View Replies
View Related
Nov 20, 2014
This was an example of code that I'm trying to get to work, I swear I took it down just as it was written in class however mine says missing return statement....
Scanner keyb = new Scanner(System.in);
System.out.print("enter rows and columns");
int rows = keyb.nextInt();
int cols = keyb.nextInt();
int[] [] array = new int [rows] [cols];
printArray(array);
[code]....
View Replies
View Related
Sep 8, 2014
I am obviously new to programming and Java so I set myself the goal of creating a very simple auto type style of program so it gets the users input and relays it out again but potentially to another window (I am currently testing to notepad). The reason I am trying to make it is because i thought it could be quite simple and I can build on it as a project to make it better.
The issue I am having is that it outputs the first character to the window I am selected (again testing into notepad) but then stops and doesn't output anything else. I tried to figure out what was going on by putting a System.out.println(arr[6]); after the delay method but it just output a line so almost like what I was putting into the array was only storing the first character of the string? I cannot figure out why that would be...
import java.awt.*;
import java.awt.event.InputEvent;
import java.awt.event.KeyEvent;
import java.util.Scanner;
public class MyBot
public static void main(String[] args) throws AWTException {
//initialising robot
Robot r = new Robot();
Scanner input = new Scanner(System.in);
[code]....
View Replies
View Related
Dec 24, 2014
I am building a java app and i am wanting to color the 6th 8th and 10th columns differently to make them stand out.
// It creates and displays the table
tableEng = new JTable(buildTableModel(rs));
for(int i=0;i < tableEng.getColumnCount();i++){
packColumn(tableEng,i,5);
[code]....
View Replies
View Related
Mar 31, 2015
I am having an issue with this code. It says that I'm missing the main class.
import java.util.Random;
import java.util.Scanner;
public class Assignment5Hangman
{
public class GetData
{
private Scanner input;
public GetData()
[Code] .....
View Replies
View Related
Mar 6, 2014
Why do I see many exceptions for one missing file on the stack trace ? My guess is, where ever that file or methof is being called , all of them will throw exceptions. So, where do I find the root exception, first one which is thrown OR the last one ?
java.io.FileNotFoundException: c: emppw.txt (The system cannot find the file specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(FileInputStream.java:120)
at java.util.Scanner.<init>(Scanner.java:636)
at com.rbc.ReportDriverRunner.getPassword(AuditReportDriverRunner.java:39)
[Code] ....
In the above stack trace, "java.io.FileNotFoundException: c: emppw.txt (The system cannot find the file specified)" is the root cause (Assuming there is only one error which causes code to fail) ? Is the first one cause of failure whch then cascades failure of other methods ?
View Replies
View Related
Jan 22, 2015
I am trying to compile the arguments program but it is giving missing return statement error. how to correct the error message.
public class Arguments {
public static Void main ( String args[])
{
int count, i=0;
String sdata;
[code]...
View Replies
View Related
Jul 10, 2014
This is my code
// TODO Auto-generated method stub
File file=new File("D:/input.txt");
java.io.FileInputStream is=new java.io.FileInputStream(file);
int a=is.read();
try {
while((a=is.read())!=-1) {
System.out.print((char)a);
[Code] .....
My text in file is :my birthday Hello World
But in out i see only:y birthday Hello World
Why is first character is missing here?
View Replies
View Related
May 4, 2014
I am very new to EJB. Started with Session bean demo which was working fine. (created a jar file which had EJB and a WAR file which had servlet). But face some issues when created MDB . (For that also created a JAR file which had EJB and a WAR file which had servlet).
I have used @JMSDestinationDefinitions({
@JMSDestinationDefinition(name = "java:global/jms/mySalutationQueue", interfaceName = "javax.jms.Queue")
}) in servlet and @ActivationConfigProperty(propertyName = "destinationLookup", propertyValue = "java:global/jms/mySalutationQueue") in MDB. I hope that's fine.
I am using WildFly 8 application server in "standalone-full" mode. But while deploying it I got some errors of missing dependencies. Trace of my application server log is as follows:
09:00:28,511 INFO [org.jboss.as.ejb3.deployment.processors.EjbJndiBindingsDeploymentUnitProcessor] (MSC service thread 1-4) JNDI bindings for session bean named Salutation in deployment unit deployment "SalutationProject.war" are as follows:
java:global/SalutationProject/Salutation!packt.Salutation
java:app/SalutationProject/Salutation!packt.Salutation
java:module/Salutation!packt.Salutation
java:global/SalutationProject/Salutation
java:app/SalutationProject/Salutation
java:module/Salutation
[Code] ....
This example is taken from the EJB 3.1 Cookbook's 1st Chapter. I have searched on [URL] .... but didnt get it. Have only used CDI annotations and no xml.
View Replies
View Related
Jul 21, 2014
import java.util.*; //input from library of routines
public class guessingGame
{
public static void main(String[] args)
{
int sN = 7;
int yourGuess;
int guessCount = 0;
[Code] ....
I'm getting an error that says identifier expected and the compiler points to this as the problem:("Pick a number between 1 and 10");
View Replies
View Related
Oct 11, 2012
I'm writing a desktop client for simple soap service (axis), and when i create a web-service client lib using netbeans wsimport tool, I don't understand why for that entity :
import javax.persistence.*;
import javax.persistence.Entity;
import javax.persistence.Table;
import javax.persistence.UniqueConstraint;
import javax.validation.constraints.NotNull;
import org.hibernate.cfg.*;
[Code] ....
My question is why generated artifact doesn't have "overral" property and what i must rewrite to fix that issue ?
View Replies
View Related
Apr 20, 2014
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
import java.text.*;
public class aaa extends JFrame
{
private JPanel combinationp, np, ap, dp, surgeryp, medicationp, infop; // input = name, address, days
private JLabel namelabel, addresslabel, dayslabel, infolabel;
private JTextField nametf, addresstf, daystf, selectedsurgerytf;
private JButton calcButton;
[Code] .....
View Replies
View Related
Jul 10, 2014
Currently I try to integrate a JavaFX BarChart into my existing Java application. Therefore I need a BufferedImage of my BarChart, so that I can render that snapshot on a Graphics instance.
I adapted the existing BarChartSample.java (Chart Sample | JavaFX Tutorials and Documentation) and removed all animations. The code itselfs works fine but I identified one problem -> my TickLabels are missing
The TickLabels are visible If I use JDK 1.7u51 but if I change to JDK 1.8u05.... than the stlye of my BarChart will be changed and my tick labels are not visible.
Did I missed something or is that a bug?
using JDK 1.7u51
[URL] .....
using JDK 1.8u05
[URL] .....
My adapted code is the following:
package barchartsample;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.FutureTask;
[Code] .....
View Replies
View Related
Feb 7, 2015
I have a problem where I have to create random integers from 1 to n + 1. When the array is displayed I have to find the missing integer from the values that are displayed and show that value. I have to use O(n^2) and O(n) operations. I have created this code so far but I cannot figure out how to make my values display n + 1. It is only displaying values 1, 2, 3, 4 and 5 in random order. I also cannot figure out how to find the missing value. I have created a boolean displayed statement but can't determine how to use it in this code.
=Java
import java.util.Random;
public class Task6
{
public static void main(String[] args)
{
int[] numbers = new int[7]; //create array of numbers
Random random = new Random();
boolean displayed = false; //boolean value to determine if number was displayed
[code]....
View Replies
View Related
Apr 19, 2014
I was practicing my java skills and came across an exercise in which a non parameter constructor calls a two parameter constructor. I tried a few searches online but they all came back unsuccessful. This is the part I am working on:
public PairOfDice(int val1, int val2) {
// Constructor. Creates a pair of dice that
// are initially showing the values val1 and val2.
die1 = val1; // Assign specified values
die2 = val2; // to the instance variables.
}
public PairOfDice() {
// Constructor that calls two parameter constructor
}
I tried calling the two constructor using the line "this(val1, val2)" but I get an error because val1 and val2 are local variables.
Then I tried to use the same signature: "this(int val1, int val2)" but that didn't work either.
View Replies
View Related
Apr 7, 2014
I have been assigned to write a program that has a user input random numbers then the program is to sort them in different ways. I have the coding for the different sorts but, I have an error saying that I am missing a return statement in the "Bubble" method. I am trying to return "arr[i]" in the "for loop" which gives me this error, and when I try to take the "return arr[i]" outside of the "for()" loop the error reads the it cannot locate variable "i".
import java.awt.* ;
import java.awt.event.*;
import javax.swing.*;
public class SwingSorts extends JFrame implements ActionListener
{
JRadioButton bubble;
JRadioButton selection;
[Code] .....
View Replies
View Related
Mar 30, 2014
I'm displaying a 3-column table with the column names ID, name, and salary. I made the ID into a link to go to the EditServlet class. What I'm trying to do is figure out which ID# was clicked to get onto the servlet page, how to implement that dynamically?
I know that if you put something like ?x=1 and then getParameter("x") on the servlet page would work, but then all the IDs would have the same parameters since I'm using a for loop to print out my ArrayList of objects.
My code for the jsp part is below.
for (int count=0; count<list.size(); count++) {
%>
<tr>
<td> <a href="EditServlet"><%= list.get(count).id %></a>
<td> <%= list.get(count).name %>
[Code] ....
View Replies
View Related
Apr 30, 2014
I'm using Java in BlueJ where I'm trying to write a class to store cycling club membership details in a map. I'm trying to pass a map as a parameter to a function that will iterate over the map and print out the member details. My code is:
public class CtcMembers
{
//instance variables
private Map<String, Set<String>> memberMap;
/**
* Constructor for objects of class CtcMembers
[Code] ....
When I execute the following in the OU workspace:
CtcMembers c = new CtcMembers();
c.addCyclists();
I can see a map populated with the expected details.
When I execute the following in the OU workspace:
c.printMap(c.getMap());
I get the following error:
java.lang.ClassCastException: java.util.HashSet cannot be cast to java.lang.String
in CtcMembers.printMap(CtcMembers.java:81)
in (OUWorkspace:1)
I wasn't aware I was trying to cast anything so this has got me baffled.
View Replies
View Related
May 18, 2014
I am trying to create a method called getVariable will has a parameter of a variable that has a type of Test, an enumeration. An int variable called x is assigned a value of 5, and through control statements, I want its value to change depending on what the argument is. I was able to correctly create this method, but when I use it I get an error saying, "non static method getVariable(Test) cannot be referenced from a static context" on line 28.
Here is the code:
package javaapplication5;
public class Product implements Cloneable
{
[Code].....
View Replies
View Related
Mar 11, 2015
I have a entry in application.properties file
caption_bubble_value.title={0} is a caption for the element box
JSP File
<fmt:message key="caption_bubble_value.title" />
in the java file I am setting a parameter to session
request.getSession().setAttribute("replaceVal", "Value headline");
How can I get the text "Value headline is a caption for the element box" on the page?
The replacement should happen on an event.
View Replies
View Related
Aug 8, 2014
i want to pass an object of type Software to assign it to a computer from Computer class...
i should note that computer and software are arrays of objects thats the variable and method to set software in Computer class
private Software[] software;
public void setSoftware(Software software,int index){
this.software[index]=software;}
note: the user choses the a computer from a list and a software as will
for example the program will show the user 2 computers
0 for computer: apple, Model: mac mini, Speed: 2.8
1 for computer: sony, Model: vaio, Speed: 2.2
the user enters the index he wants then the program will show a list of software to add to the computer selected
the error I'm having is run time error Exception in thread "main" java.lang.NullPointerException and it points to these 2 lines
1.comp[Cch].setSoftware(software,Sch);
2. the method setSoftware
every thing is running correctly but this step above
Cch= the chosen computer index
Sch= the chosen Software index
why am i getting an error and how to fix it?
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