Posts by murakami Kauê • 43 points
10 posts
-
0
votes1
answer27
viewsQ: Procedure in oracle
I can not very well create procedures with the output values, how to receive a value, and return it after the call, someone could help me with an exercise that I am doubtful Create a procedure that…
-
0
votes1
answer27
viewsQ: recovering array with PDO
I have a problem that I’ve been through before but I can’t remember how I solved it. The goal is to compare two tables of the database and return only the corresponding values between the two, in my…
-
1
votes1
answer36
viewsA: File sent to firebase has 0Bytes
Solved In case anyone searches for this information. //metodo para fazer o upload private void uploadFile(){ final String nomeAutorArquivo = nomeAutor.getText().toString(); final String fileName =…
-
0
votes1
answer36
viewsQ: File sent to firebase has 0Bytes
I have a problem, I can send the pdf to the Storage, but it is coming there with 0Bytes. there is the code, and does not generate error, I believe I am not sending any file, but within this…
-
1
votes1
answer67
viewsA: Error sending pdf to Firebasestorage
I managed to fix the error, I was not loading the file in a certain way, for that I had to use a ByteOutoutStream and make an array of bytes So I don’t even have to use Uri private void uploadFile()…
-
1
votes1
answer67
viewsQ: Error sending pdf to Firebasestorage
I am trying to send PDF files to firebase Storage and with this code I can go to the point of picking up Uri, sending, but only falls into onFailure, follows the code @Override public void…
-
0
votes1
answer204
viewsA: error: incompatible types: Mapsfragment cannot be converted to Fragment
Eae, I just came across this problem, the solution was to add an import import android.support.v4.app.Fragment; in place of import android.app.Fragment; In this case, the Fragment class you will…
-
-3
votes1
answer192
viewsQ: Exception in thread "main" java.lang.Illegalargumentexception: Type without superclass: module-info
I created a game with libgdX and runs normally on mobile emulator, but now to generate the key apk it does not generate, I’m wasting a little time with it, someone knows the solution ? Exception in…
-
-1
votes2
answers70
viewsA: What’s the fastest way?
I believe that it is much more feasible to modify directly in the bank and only recover the information, than you use the code to then save, of course if you want to do both can use a Thread, surely…
-
1
votes1
answer545
viewsQ: Android app does not connect on local webservice
I’m studying webservices but came across a problem, The API works because I can already enter data into the database, I’m using wamp, but in the app, I followed several steps and just don’t send,…