Posts by neto schneider • 143 points
17 posts
-
1
votes1
answer441
viewsQ: Struct with JSON in C++
I’m having problems inflating a struct using a JSON file, in fact I don’t know how to do it, I’ve been researching about the Jsoncpp library, but I was not successful. Follow a simple example of my…
-
0
votes1
answer3819
viewsQ: React-Native keyboard problems
Good night, I’m having a problem on the keyboard of my android application, I would like when opening the keyboard of the same, only the bottom text box if moved, or the items of the screen adjusted…
-
1
votes1
answer677
viewsQ: Problems with React Native
Good afternoon, I’m getting an error whenever I run the command "react-native run-android" to start my first application on AVD with version 6.0 of android. I am a beginner in React Native, and…
-
0
votes1
answer361
viewsQ: Java FX - Threading Issues
Good morning, I would like to sanction a question that is disturbing me, as I do to edit a Label from a Thread using a button? Whenever I run the code I get an error, but if I run this same code…
-
1
votes2
answers301
viewsQ: Thread Issues in Java FX
Good night, I am having problems trying to implement a thread to my application, I always get the same error and do not know how to solve. When I run the application the first Thread takes effect,…
-
0
votes1
answer543
viewsQ: How can I kill a Thread
I’d like to know how to kill a Thread. public class thread { private static void metodo(){ new Thread(){ @Override public void run(){ while(true){ System.out.println("Executando..."); try {…
-
0
votes0
answers40
viewsQ: How do you make Jtextfield behave like Combobox?
I wonder if there’s a way to turn my Jtextfield into some sort of combo box. I would like that when I type something, this data is automatically relating to some database and appear options of…
-
1
votes1
answer72
viewsQ: Regular expressions do not match the desired text snippet
I’m needing my program to capture an item from a given text, but it’s not doing that, on the contrary, it’s capturing everything that comes after that. Code I’m using, ex: String html =…
-
1
votes1
answer49
viewsQ: How do I kill a websocket?
I’m having a hard time kill the websocket that runs inside my java app, I can’t find answers anywhere. I need this, because I’m using it with a Chrome extension to fill out a website’s Forms, but…
-
1
votes0
answers200
viewsQ: Threads and Interrupt();
I wonder how I can pause my Thread efficiently and correctly with the interrupt method(); I’m with a part of my class that I started, but I’d like to pause it. My project consists of a websocket,…
-
1
votes0
answers246
viewsQ: Websocket in java and javascript
I have a single server done in JAVA that complete a form of a particular website web. I use the java application as a server to send the information and a extension made for Chrome who acts like…
-
0
votes0
answers38
viewsQ: Mozilla Firefox extension
I have a problem, my extension does not work at all, first of all, I will explain to you what it serves: This extension when active makes the insertion of data in a form of a given web site,…
-
1
votes1
answer130
viewsQ: Problems with Sockets
I’m creating an app that needs send and receive information of a web page through Sockets, the server in Java I managed to do, but I do not know much about JS, could help me to do the client that…
-
0
votes1
answer567
viewsQ: Fill in form with extension for google Chrome
I am creating an extension that fills a form of a particular web page, but I am with a problem, the code does not run either automatically and even when clicking on the extension, I am very lost.…
javascriptasked neto schneider 143 -
2
votes1
answer84
viewsQ: Decrease script or switch to PHP code, help
Good morning, if you don’t mind, I need help with a script I made in java. <script type="text/javascript"> var data, horaAtual, tempoLimite; var clique = 0; function data() { data = new…
-
1
votes2
answers383
viewsQ: How do I manipulate the order of the files in an Arraylist?
I am developing a program, in which part of the processes requires me to take the numbering of the last file listed within a ArrayList. My doubt is this, when mine ArrayList starts adding the files…
-
1
votes1
answer196
viewsQ: How do I get a line back on my jTable?
I’d like to know how to retrieve information from a line of mine JTable, follows the code line of the same. Usuarios operacao = new Usuarios(); DefaultTableModel tabela = new DefaultTableModel();…