Posts by Eder Rodrigues • 66 points
4 posts
-
2
votes1
answer233
viewsA: Angular 7 waiting service reply to continue
You can "subscribe" to the "get Address" function inside the Save. salvarUsuario(){ this.usuario = formUsuario.value(); this.pegarEndereco(this.usuario.cep).subscribe(success -> {…
-
0
votes2
answers94
viewsA: Incorrect Output when Printing Array Elements
'b' is an object("Student"), for you to be able to print the values of each object you must use the toString() method. example: b.toString() The toString() method you can override by setting a…
javaanswered Eder Rodrigues 66 -
1
votes1
answer337
viewsA: How to submit via java post?
Change your form tag to this: <form action="adicionarContato" enctype="multipart/form-data" method="POST"> <br><label>Nome:</label> <input type="text" name="nome">…
-
2
votes1
answer1050
viewsA: Java, write to a specific line of a file . txt
I’m not sure if it is possible to update only one line already written inside a txt file, what you can do instead is update the complete contents of the file, follow the example: public static void…