Posts by DoutorWhite • 111 points
8 posts
-
-4
votes1
answer123
viewsQ: How do I import a. jar file without using an IDE? (Java)
Ex: I have a. jar file that I need to import in order to access the api, how do I do it right in the code? I don’t know if I was specific, but how? (No IDE)
javaasked DoutorWhite 111 -
-2
votes1
answer14
viewsQ: Error in test code: Object() takes in Parameters
I made a test code, but I don’t know what the mistake, someone help me? class Caneta: def _init_(self, cor, modelo, ponta): self._cor = cor self._modelo = modelo self._ponta = ponta self._carga =…
pythonasked DoutorWhite 111 -
0
votes0
answers30
viewsQ: How to use JSON in Java
Hello, I wanted to know how to use JSON files, in the Java language, because I need to use them as a database. I just wanted to know how to read and write, that’s all.
-
0
votes0
answers282
viewsQ: Eclipse run problem
I was trying to fix a problem in my Java, in Run. When I tried to run Run again (since I hadn’t changed anything yet, I had only opened the Run settings) gave the following problem:…
-
2
votes1
answer205
viewsQ: How to place a class within a JSON
Does anyone know how to put a class inside a JSON file? I need to save a class within a JSON file, however, it returns that this file is not serializable. Does anyone know how I can get this class…
-
0
votes5
answers63261
viewsA: How to clean the console in Python?
import os if os.name == "nt": os.system("clear") else: os.system("cls")
-
5
votes1
answer3076
viewsQ: How to create text in a python image?
I wanted to create a text in an image, with python, to show a variable (whatever the format), e.g.: i have an image showing an A = 0, then I change a variable, refocus the image and it appears A =…
pythonasked DoutorWhite 111 -
2
votes1
answer946
viewsQ: How to change the value of an object in python . json
how do I change the value of an object in python . json (without rewriting it all)? Ex: { "Nome": "Henrique Antônio de Oliveira" "Cidade": "São Paulo" "Estado": "São Paulo" "Idade": "23" "Número do…