BLOB nach dem Download unbrauchbar

jemand

Mitglied
Hi,

meine App kann bisher Sprachmemos in 3gp aufzeichnen und diese werden in eine Datenbank als BLOB gespeichert. Die Entwicklungsumgebung ist Android Studio und als Datenbank verwende ich MySQL.

Als erstes wird die temporär-gespeicherte Datei nach der Tonaufnahme in ein byte[]-Array umgewandelt.

Java:
private byte[] convertFileIntoByteArray(File file) throws Exception {
        byte[] byteData = new byte[(int) file.length()];

        FileInputStream fileInputStream = new FileInputStream(file.getAbsolutePath());
        DataInputStream dataInputStream = new DataInputStream(fileInputStream);

        dataInputStream.readFully(byteData);

        dataInputStream.close();
        fileInputStream.close();

        return byteData;
    }

Das Byte wird in BASE64 umgewandelt.

Java:
encoded_bytes = Base64.encodeToString(binaryData, 0);
url_encoded_bytes = URLEncoder.encode(encoded_bytes, "UTF-8");

Und auf der PHP-Seite wird BASE64 wieder dekodiert.

PHP:
$base64OfMedia = base64_decode(urldecode($_POST["mediaFile"]));

Zuletzt wird das alles in ein BLOB-Field eingespeichert.

Die Daten sind dann zwar drin, allerdings ist die Datei, die ich vom BLOB ziehe, unbrauchbar. Hat jemand ne Ahnung, warum? Oder ob an der ganzen Kodierungssache was falsch ist?
 
Ähnliche Java Themen
  Titel Forum Antworten Datum
AllBlack Auf der Suche nach einem App-Entwickler Android & Cross-Platform Mobile Apps 1
J Android zugrif auf Thread nach Handy drehen. Android & Cross-Platform Mobile Apps 10
AGW App schließt nach 2 Sekunden Android & Cross-Platform Mobile Apps 2
ruutaiokwu Android Daten von "Activity A" nach "Activity B" umleiten? Android & Cross-Platform Mobile Apps 13
A Android-Studio: 2. Layout nach kurzer Zeit aufzeigen Android & Cross-Platform Mobile Apps 2
B Profilpic wird nach anmeldung nicht angezeigt. Android & Cross-Platform Mobile Apps 2
B App schließt nach Start. Android & Cross-Platform Mobile Apps 12
J Android Nach Appsprachenänderung die Systemsprache ermitteln Android & Cross-Platform Mobile Apps 2
G App wird nach Installation auf Smartphone beendet Android & Cross-Platform Mobile Apps 1
B Android wie kann ich in einer xml nach bestimme item suchen (DOM) Android & Cross-Platform Mobile Apps 7
Fischkralle Android Nach Textdateien in Ordner suchen Android & Cross-Platform Mobile Apps 5
V Android Fehlermeldung beim Öffnen von Eclipse nach Installation der Android Erweiterung Android & Cross-Platform Mobile Apps 4
T Android Nach Buttonclick neu laden Android & Cross-Platform Mobile Apps 3
B Android Activity nach gedrückte Returntaste weiterlaufen lassen Android & Cross-Platform Mobile Apps 2
B Android ringProgressDialog nach Erfolg Button einfärben Android & Cross-Platform Mobile Apps 2
N PriceScannerApp: warum wird nach dem Scannen Display gleich schwarz? Android & Cross-Platform Mobile Apps 4
L Android Bildschirm bleibt dunkel nach neustarten der App nach betätigen des Home-Buttons Android & Cross-Platform Mobile Apps 3
N Android EditText.setError() funktioniert nicht nach Rotation Android & Cross-Platform Mobile Apps 1
B Android Button erstellen nach Vorlage Android & Cross-Platform Mobile Apps 4
L Android Button mit Pfeil nach rechts Android & Cross-Platform Mobile Apps 1
M Android App startet nach Tastensperre neu Android & Cross-Platform Mobile Apps 3
P Android Nach Animation Layout auf alten Platz Android & Cross-Platform Mobile Apps 3
G Werteübergabe nach unbestimmter Zeit Android & Cross-Platform Mobile Apps 28
A Fehlermeldung nach Neuinstallation von Eclipse/bestehenden Projekten... Android & Cross-Platform Mobile Apps 2
E Android App stürzt nach Modifizierung ab Android & Cross-Platform Mobile Apps 2
N Textview macht immer nach einem Beistrich einen Abstand Android & Cross-Platform Mobile Apps 6
K Apps durchsuchen nach verwendeter Methode Android & Cross-Platform Mobile Apps 4
M Android MediaRecorder - Crash nach 2. Start Android & Cross-Platform Mobile Apps 2
S rms recordstore bleibt nach schießen der anwengung nicht erhalten Android & Cross-Platform Mobile Apps 4
M Text in txt-Datei schreiben und nach ABC sortieren? Android & Cross-Platform Mobile Apps 2
H FileConnection: Frage nach Dateisystem-Zugriff unterdrücken Android & Cross-Platform Mobile Apps 5
K suche nach der richtigen dokumentationh Android & Cross-Platform Mobile Apps 2
S ein String nach vorgegebenen Zeichen teilen Android & Cross-Platform Mobile Apps 3
L Ungültiges Java-Archiv (jar) nach Programmentwicklung Android & Cross-Platform Mobile Apps 4
T Download Web-Content, AsyncTask Android & Cross-Platform Mobile Apps 5
lolcore Android Studio -Download Documentation for Android SDK Android & Cross-Platform Mobile Apps 0
J Download und speichern mit jsch klappt nicht Android & Cross-Platform Mobile Apps 5
T AsyncTask / Download sehr langsam Android & Cross-Platform Mobile Apps 2
T JCifs Download unter Android beschleunigen Android & Cross-Platform Mobile Apps 0
N Java ME Download von Werten im SourceCode aufrufen Android & Cross-Platform Mobile Apps 5
K Nokia SDK & Carbide.j download Android & Cross-Platform Mobile Apps 1

Ähnliche Java Themen

Neue Themen


Oben