Tagged Questions
0
votes
1answer
19 views
Odd Java String[] error
I have this line of code:
String[] projection = {MediaStore.Audio.Media._ID, MediaStore.Audio.Media.ARTIST,
MediaStore.Audio.Media.TITLE, MediaStore.Audio.Media.DATA,
...
3
votes
1answer
34 views
How to read out a column with a colon (:) in its name in hibernate and postgresql
sorry for this maybe being a very easy question, I searched and didn't find anything about my specific case.
I am given a postgre database in which I have a table that has a column called:
...
-2
votes
1answer
49 views
Function signature with generics java
I am trying to understand lambda expressions in Java and came across this blog post:
Tutorial Lambda Expressions
Take the first two code snippets:
import java.util.ArrayList;
import java.util.List;
...
0
votes
1answer
19 views
Syntax error while making 2-Dimensional LinkedList
I'm trying to make a 2-Dimensional LinkedList in Java and this is what I have come up with:
LinkedList<LinkedList<String>> rows = new LinkedList()<LinkedList<String>>;
...
0
votes
3answers
30 views
Required: Variable Found: Value
public static int biggestArrayGap(int []a, int n)
{
int biggestGap = Math.abs(a[1]-a[0]);
for (int i=1; i<n-1; i++)
{
if (Math.abs(a[i]-a[i-1]) > biggestGap)
...
0
votes
1answer
86 views
“Unfortunately My App has stopped” [closed]
i'was create a app for android but there is a error found " Unfortunately My App has stopped " so please help me
AndroidManifest .xml
<?xml version="1.0" encoding="utf-8"?>
...
0
votes
1answer
31 views
Syntax Error in label
I have this part of code which is giving me trouble:
Iterator localIterator1;
label75:
Iterator localIterator2;
if (str1 != null)
{
localIterator1 = localArrayList.iterator();
...
-3
votes
2answers
56 views
100 syntax errors on tokens in R.java
There is exactly 100 errors in R.java that all say the same error. The error is the following:
Syntax error on token "10", delete this token
There are red flags everywhere saying not to modify ...
0
votes
0answers
69 views
unable to spot the SQL syntax error
whenever i try to insert, delete and update i get the following syntax error. but after I close the exception jdialog and restart the application the data is either inserted, update and deleted
...
0
votes
2answers
29 views
Processing parentheses syntax
This might seem like a very simple question, but I am quite confused.
I have an if condition with many conditions in it and I cannot figure out the parentheses syntax to be used in this case. Could ...
1
vote
2answers
34 views
Invalid method declaration issue
Why am I getting an "invalid method declaration; return type required" error on check(values); ?
public class Swap
{
int[] values = {5, 6, 7, 8, 9};
check(values);
public void ...
1
vote
3answers
69 views
Whats wrong with this error? Syntax error on token “<”, ? expected after this token
I have this line of code in my Java program:
private final List<PhoneNumber> receivers = new ArrayList<>();
It signifies an error underneath the first < after 'new ArrayList'. ...
1
vote
2answers
139 views
Java mysql, Simple update with PreparedStatement has syntax error
This code has some sort of simple syntax error. I've fought it for hours now and I give up. Can you spot it? I bet it's easy. Thanks!
When I update just the firstname John, no problem.
When I try ...
-2
votes
3answers
55 views
I want to create method inside if condition in android
by using onItemClick and if Condition i match the string array with raw folder MP3 File
By click listview songs i need to play songs on other activity by call just that mplay method. Pls help me....
...
0
votes
2answers
66 views
Initialized object array still getting null pointer exception?
I'm completely new to programming and am trying to create a Poker program in Java.
This bit of code is in the Player class, where I'm trying to construct an empty hand. No matter how I fill the array ...
0
votes
2answers
51 views
Jython SyntaxError (from Java app)
In my Java app I want to use Jython to interpret Python code.
So I initialise Jython as follows:
PySystemState.initialize();
PythonInterpreter jython = new PythonInterpreter();
Then I want to test ...
-5
votes
6answers
90 views
Small error I don't know how to fix, “ not a statment” [closed]
What I am trying to do is take in input from an end user and write it to a file called dictionary.txt. Then I am trying to check that the word entered by the end user is not already in the ...
-3
votes
2answers
56 views
NullPointerException in array of class Hut
I'm trying to design a pretty simple simulation civilization game for school. Right now I'm trying to make it so when you click this button on the control bar you make a new hut instance. I will put ...
0
votes
1answer
38 views
Slick2d Cannot instantiate the type Game?
Hey guyes i just started creating some programs or games with Slick2d.So the problem is that i am getting error like this: instantiate the type Game.
The code:
public HelloWorld()
public static ...
-3
votes
1answer
76 views
misplaced constructs (Java) [closed]
public void drawBoard(){
System.out.println(P1 + "|" + P2 + "|" + P3 + "|");
System.out.println(P4 + "|" + P5 + "|" + P6 + "|");
System.out.println(P7 + "|" + P8 + "|" + P9 ...
-1
votes
2answers
60 views
Java: difference between “CustomClass1” and “CustomClass1.class”?
This question is in continuation with Java: Using Classes as a value in hashmap.
What is the difference between following two approaches?:
1)
String name = (
(
...
0
votes
2answers
85 views
Java: Using Classes as a value in hashmap [duplicate]
I'm trying to use custom Class as a value in a Map<String, Class<?>>. Following are relevant parts of code:
Following is declaration and initialization of Map in main():
public static ...
-8
votes
2answers
72 views
In Eclipse System.out doesn't work [closed]
I am aving a problem with Eclipse. I try to print something, but when I write System.out.println() it underlines the method println() and writes
Syntax error on token "println". Identifier is ...
1
vote
0answers
108 views
OpenCV in Java, why can't I use Mat.CvType.CV_8UC1?
If I try to write that code
Mat.CvType.CV_8UC1
I get the error CvType cannot be resolved or is not a field. What am I missing? I think I've added the correct library and DLL in the project ...
0
votes
4answers
94 views
For loops not executing scan.nextInt correctly
This is a program I am working on for class. After writing most of the program I am now trying to run it and it seems I have a logical error. For some reason the computer will just execute up until ...
0
votes
1answer
105 views
FileNotFound exception when trying to read and write
on one of my Java homework assignments, I am asked to request 2 file names from a user, copy all the text from the first file, and then convert it all to uppercase letters and write it to the second ...
-1
votes
2answers
48 views
How to solve a “Variable 'args' is accessed from within inner class” Java error? [closed]
The Java class quoted below uses three numerical values. I want to call this class from command line passing different values each time through the args variable. But when I do that, I get a "Variable ...
0
votes
9answers
151 views
For loop variable issue
I have developed the following for loop to set the data in a drop down list. This works perfectly if I use a number on the .get() method to select and compare which item has been clicked, but ...
0
votes
1answer
67 views
Specific String input in Java
I'm making a program that asks for a 5 digit string, containing a letter, then a "-" and 3 numbers.( eG: A-123) I'm using split with the delimiter "-" to split the letter and the numbers, but the ...
-1
votes
2answers
46 views
Why is there a syntax error occuring
// The "Summative" class.
// Melanie Deivendram
// Jan.16,2012
// Purpose: To create a program as part of the summative
import java.awt.*;
import hsa.Console;
public class Summative
static ...
-2
votes
5answers
77 views
Java annoying syntax error [closed]
I'm new to Java and I'm trying to make an lvling system. Hers my code so far:
import java.util.*;
class Player
{
private String Name;
private int Level;
private int EXP;
int ...
0
votes
4answers
119 views
MySQL Syntax Error 1064 in Inner Join Query [closed]
Im using the following SQL query but i keep getting the error
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''
...
-3
votes
2answers
344 views
Syntax error on token “class” [closed]
I am trying to create a nested class in order to use the AsyncTask, however eclipse gives me an error on the class SendData saying "Syntax error on token "class", invalid type" why is it giving me ...
1
vote
2answers
93 views
Abnormal error message with java.util.ArrayList and “Enum”
I have a very simple program for a homework assignment, I'm trying to group bills by years and months using a class called "Payment" (terrible name, I know) that I store within an ArrayList (I'm open ...
0
votes
1answer
40 views
syntax error after placing images in res/drawable directory [duplicate]
Possible Duplicate:
Android: drawable resource with numbers. Is it possible?
I'm creating an android application that includes images.
every couple of images contains the following naming ...
0
votes
2answers
98 views
Syntax error, insert “}” to complete ClassBody?
For some reason I get a syntax error that says, "Syntax error, insert "}" to complete ClassBody." I checked every method, every statement to make sure I have complete opening and closing brackets, so ...
2
votes
2answers
822 views
The type java.rmi.RemoteException cannot be resolved. It is indirectly referenced from required .class files error in java
I'm really new to Java and trying to call web-service. I have taken a code from net
String message = "";
static Map output;
public static void main(String args[]) {
try {
String ...
1
vote
3answers
188 views
Java Interest Calculator won't compile, not sure why
I am writing an interest calculator in Java. The program prompts the user for input, and using that input calculates interest on a certain bank account (checking, savings or CD).
That is the gist of ...
0
votes
1answer
432 views
Java cannot find symbol error
I know that "cannot find symbol" shows up when there misspelled something or the variable is not in the scope it is used or something like this. But still I cannot figure out what causes that problem ...
-1
votes
4answers
212 views
java grade to GPA
I have an java application which convert input grade A,B,C,D,E and F into GPA points, but I have error not sure where is mistakes was, also how i can improved the code below so that user not entering ...
1
vote
1answer
481 views
error “main cannot be resolved or is not a field ”
"MAIN CANNOT RESOLOVED OR NOT IN A FIELD"
It gives error in mainactivity at setcontentview "main cannot be resolved or not in field.
This is my code plz help me as i got tired to find a way out plz ...
0
votes
1answer
126 views
java error code.please check in (java) [closed]
Please help check the code. Only I the beginner can write the corrected code.
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.io.PrintWriter;
import ...
3
votes
2answers
1k views
Syntax error , insert “EnumBody” to complete EnumDeclaration
I was in middle of coding and accidentally put the following line of code at the part of class where we declare instance variables. but i checked and it gives the same error anywhere by anywhere i ...
5
votes
1answer
122 views
Why do some character literals cause Syntax Errors in Java?
In the latest edition of JavaSpecialists newsletter, the author mentions a piece of code that is un-compilable in Java
public class A1 {
Character aChar = '\u000d';
}
Try compile it, and you will ...
2
votes
1answer
319 views
MySQL Java Update Syntax
I just trying to use a update in my application, but i just can't. A the console, this mysql command works, but here, doesn't.
Well, I use this in my program:
conexao = poolMySQL.connect();
...
0
votes
2answers
201 views
Java Key Adapter Key Event error…semi colon expected instead of parenthesis?
I was following a coding tutorial having to do with Key Events and all the code looks right, but for some reason there is an error that I can't fix. Maybe all I need is another set of eyes to scan ...
0
votes
3answers
190 views
Compile error in simple application that should perform Complex Number arithmetic
I must write simple calculator in java. I wrote in Eclipse my code and I have two bugs in dodaj and odejmij methods (the same).
Error in Eclipse - insert "EnumBody" to complete BlockStatement
I ...
0
votes
4answers
189 views
Switch statement for some reason does not like case 8. Compiler is acting real weird
Here is the code:
public static void main(String args[])
{
int i=0;
int m=0;
double scale;
boolean exit;
Shape[] s = new Shape[10];
while(exit ...
0
votes
0answers
73 views
Errors and bad style [closed]
Could some one help me proofread this code and help correct it?
import java.io*;
public Class countWord{
static final String
prompt1 = "Enter the name of the text file: ";
static final String
...
1
vote
6answers
834 views
syntax error on token“;”,{expected after this token
**Just a simple class calls a class that prints an array.i get syntax error on
eclipse. I also get an error that i dont have a method called Kremalation.**
public class AytiMain {
public ...


