3
votes
1answer
40 views

How to use a Python class in a Java program?

Let's suppose I need to write a Java application and this application need to perform some tasks and I have a Python class that perform those tasks through its functions/methods. I'd like to use this ...
0
votes
1answer
31 views

Function calling from custom OnClickListener

I've Main_Activity.class file. There I am defining a custom function myFunction() . In this function I want to call an externally defined custom OnClickListener which will call the function ...
-2
votes
0answers
23 views

How to use a progress bar with a function in Java? [closed]

I have a java function that downloads a bunch of files. I wish to have a progress bar to go along with it. I have been trying to figure out how to do this. The documentation says I can use a progress ...
3
votes
3answers
38 views

Java what .read() function returns ? And Java IOException

I have this line of code.And numbers.txt has a string of these numbers : 123456789 .Running it prints : 235689 . Why? What does .read() do ? And when 'while(fin.read() > -1 )' is TRUE? Also about the ...
1
vote
5answers
75 views

Convert a String to Modified Camel Case in Java or Title Case as is otherwise called [duplicate]

I want to convert any string to modified Camel case or Title case using some predefined libraries than writing my own functions. For example "HI tHiS is SomE Statement" to "Hi This Is Some ...
0
votes
4answers
72 views

Why does C need prototype functions while Java does not? [duplicate]

I've taken a Java course and am trying to teach myself C with K&R. So far so good but I don't understand the purpose of prototypes. See the 2 // comments in the code below: #include ...
2
votes
2answers
40 views

Java generated Token not random - but what is it?

I am told to analyse the behavior of a web application and noticed that it generates password reset tokens based on the username+password combination. That means that if username and password ...
0
votes
1answer
44 views

How to write the output to the text file same as output shown by show() function

May I know how to write the output to the text file same as output shown by show() function. For example when I executed this code: p.show(); output: (TOP (S (NP (PRP$ My) (NN name)) (VP ...
0
votes
1answer
31 views

How to run a function on Create of the app

i'm trying to run this function: public static void main(String[] args) throws ParserConfigurationException, SAXException, IOException, XPathExpressionException { ...
0
votes
0answers
25 views

Calling a function from my library and displaying its variables

I wrote the code to locate a mobile via GPS (Simple code found everywhere) and i wrote to functions that return latitude and longitude values; here's the GPS full code: public class LocationFromGPS ...
4
votes
2answers
66 views

Test for assigning with a function

I was wondering if there is a test or some way of knowing if a function is called to assign or not, I mean telling the difference between... int x = getX(); and just, getX(); This doesn't have ...
0
votes
2answers
54 views

Java calculator wont output the answer [duplicate]

So im still trying to make this calculator work correctly. The whole point is for it to keep asking for a y value and an operator until the user inputs "q". The only thing is that it wont return the ...
0
votes
3answers
128 views

Passing function as a parameter in java

I'm getting familiar with Android framework and Java and wanted to create a general "NetworkHelper" class which would handle most of the networking code enabling me to just call web-pages from it. I ...
0
votes
1answer
34 views

How to pass null parameter to a function in POSTGRESQL?

i have a question. I have a function called fn_Sell(id integer, idCreditCard integer, description varchar) thats an exameple, is not the all function, but i want to pass NULL, in idCreditCard, the ...
0
votes
1answer
53 views

JPA query with filter on current time stamp - seconds for Oracle

I am using JPA, Eclipse link, Oracle. I am trying to introduce a condition in my JPA query equivalent to following oracle expression current_timestamp - NUMTODSINTERVAL(10, 'SECOND') I have tried ...
-1
votes
0answers
35 views

Java - Entering a function (ex: y = x +1) and having the program output the x and y intercepts. [Algebra 1] [closed]

Is there a way in Java to enter a function such as y = x + 1 and have the program output the x and y intercepts? Anything would help (code snippets, walk throughs, etc.) Thanks!
0
votes
2answers
62 views

Inheritance in Java, can't access subclass functions/methods

I'm having trouble accessing any public function in my bin_stree object: src/main.java: public static void main(String[] args) { b_node <Integer> root=new b_node <Integer> (10); ...
1
vote
5answers
83 views

Why does this function in Java doesn't affect the result?

class Test { public static void main(String[] args) { int[] list = {1, 2, 3, 4, 5}; reverse(list); for (int i = 0; i < list.length; i++) { ...
-9
votes
0answers
61 views

What are the problems with these function? [closed]

What is the problem with this function? public int calculate(double a) { System.out.print(“This is the result”); } What is the problem with this function? public int doSomething(double a) { double ...
0
votes
3answers
60 views

Adding a method to Java class in different file without extending the class

package com.companyxyz.api.person; public class Man { public var1; public var2; ... private static void createAuth() { ... } // public methods go here ... } I want ...
0
votes
1answer
61 views

How to create callback (add as dynamic argument, a function)?

I'm creating this method / function and I need to implement callback. I mean, I need to add as dynamic argument, a function. I have read several articles but I can not understand how to get it. Any ...
5
votes
5answers
158 views

Best practice for returning multiple values in Java?

Today I've added a extra security check behind my login forms, to slow down brute force attacks. I've got multiple login forms and made a nice easy to call function that does all the checking and then ...
0
votes
1answer
26 views

Basic Syntax for passing a Scanner object as a Parameter in a Function

Here is what I wrote which is pretty basic : import java.util.Scanner; public class Projet { /** * @param args * @param Scanner */ public static void main(String[] args) { ...
2
votes
8answers
131 views

For loop - like Python range function

I was wondering if in Java there is a function like the python range function. range(4) and it would return [0,1,2,3] This was an easy way to make for enhanced loops. It would be great to do ...
3
votes
4answers
88 views

References objects in Java [duplicate]

I have a doubt about object references in Java. It always send its object by reference to the functions, and it means that if you modifie them in the function sent, they will come back modified. A ...
0
votes
0answers
46 views

values not being added to arraylist

public static void main(String[] args) { List <int []> arrayList = new ArrayList<int []>(); // array list to hold child arrays PriorityQueue <state> open = new ...
0
votes
4answers
67 views

Function which will give the names of all items in a folder [duplicate]

Here's what I have to do, but I have no idea where to start: Write a program that allows you to browse images (gif, jpg) from the specified directory. Pictures are subsequently shown in the ...
0
votes
1answer
120 views

Call method with parameter from jQuery or Ajax

Do you have some sample code that from you can show how to call java method from your Ajax? The following code can call the Java method: $.ajax({ type: "POST", url: "test.java", data: data, success : ...
-4
votes
1answer
69 views

I have a recursion function issue? [closed]

This is my first recursion problem and I'm not understanding it, nor does it work. Any ideas? int C; int myFactorial; int n = Integer.parseInt(objectsChooseField.getText()); ...
2
votes
5answers
102 views

Not returning values, from a function with non-void return type

I read here on SO how : In C++ : Not returning from a non-void function is undefined behavior. ... analysis requires inspection of the entire program, which is incompatible with separate ...
-10
votes
2answers
147 views

Write a java program for a report card [closed]

Can anyone please write a java program for a report card that accepts name of students, marks of 5 subjects. Compute total percentage, highest marks, lowest marks. assume that there are 40 students in ...
1
vote
2answers
49 views

In a function prototype it shows an error

it shows cannot find symbol- class string I am writing a program for a report card. This function is to accept names. Pls help public static string accept_name() { String STR[]=new String[40]; ...
-10
votes
2answers
69 views

How to store a returned object from a method in a new object in the main method in JAVA [closed]

It shows array dimension missing. new obj[] = mark_entry(); where mark_entry() is a method.
0
votes
2answers
61 views

Instance methods [closed]

........................................................................................................................
0
votes
5answers
64 views

Pass references by value Java [duplicate]

I have the following code: public class PassReferenceByValue { static void modify(String m) { m = "Else"; } public static void main(String [] arg) { String ...
-2
votes
2answers
38 views

Java: nested class function?

ob is an instance of an object. If I call the function getname it returns the class type ob.getClass().getName() My doubt is, how come getclass and getname are 2 functions, are they some how ...
0
votes
0answers
63 views

EMV TLV Java Function

I'm looking for a way to translate an EMV response with Java like with this online option: http://www.emvlab.org/tlvutils/ where you put something like this EMV response: ...
2
votes
1answer
68 views

How to timeout for a Public method in Java?

I've searched for a while but I didn't found a concrete unique solution for this problem, some use function methods like .setTimeout(...) or so, but I just want to set timeout to one of public methods ...
0
votes
2answers
113 views

Printing Specific Pattern using for Loop in Java

i have to print specific pattern using Java for loop . Input will be 4 characters eg. a, b , c, d now what i have to print is aaaa aaab aaac aaad aaba abbb ...
3
votes
4answers
172 views

Java's methods vs. functions [duplicate]

I just decided to integrate my MATLAB programming skills with some more consistent and rigorous Java coding. Therefore I hope it's not gonna be a too naive question. I'd like knowing if there is any ...
0
votes
1answer
43 views

Internet service provider locator

Is there any function that can get your Internet service provider information? In other words, when you're connected to Wi-Fi at any place or even 3G; can you get the ISP of the network you're ...
-2
votes
1answer
56 views

How to include javascript functions from java code? [closed]

I have this javascript code: <script type="text/javascript"> function CopyToClipboard() { CopiedTxt = document.selection.createRange(); CopiedTxt.execCommand("Copy"); ...
0
votes
1answer
43 views

How to call HSQLDB Function MONTHS_BETWEEN?

I'm trying to execute the follow SQL: select months_between(sc.dat_initial_period, hp.dat_signup) + 1 as months from harvest_partner hp inner join sales_commission sc on ...
0
votes
0answers
54 views

Nullpointer Exception parameter passing [closed]

I am working on form. I am saving and retrieving the data from database. I succeeded in fetching data and showing it in Table. But I am unable to open that data. I have dynamically created the buttons ...
0
votes
2answers
79 views

Make this function repeat using runOnUiThread to update textview location

I trying to make my textView appear in different place of the screen every minute or two (delay is not important). I've seen people are suggesting I use runOnUiThread to make a timer repeat the random ...
0
votes
1answer
87 views

How can I make my app repeat this function every minute?

I''m currently making an app that displays a digital clock in a random place onCreate. What I want the app to do is just repeat that function every minute. Has anybody got any ideas how this could be ...
0
votes
2answers
21 views

Getting class param in non-extended form

I have a function, say: public void doWhatever(ExtendedClass class) {} Which the class param is a class, say: public class SomeClass extends ExtendedClass {} How can I get the "SomeClass" name ...
0
votes
1answer
43 views

Show image when button is clicked

I have this div: <div id="flaw"> <img id='flaw1' src='images\flaw1.png'> <img id='flaw2' src='images\flaw2.png'> <img id='flaw3' src='images\flaw3.png'> ...
1
vote
3answers
61 views

Return variable and array from function java

I have a sorting function. I want to return two values and i thought it will be better if i return vaiable and array. But i don't know how to do it. public static int[] bubbleSort(int[] allatal) { ...
4
votes
1answer
94 views

Methods in Enums [duplicate]

So I am confused on if in Java enums can have functions. I am making a simple html editor and wanted to use enums to represent the html tags, yes I know this is not the best way to go about it but its ...

1 2 3 4 5 8