bcv-vf/src/main/java/the/bytecode/club/bytecodeviewer/resources/exporting/impl/DexExport.java

94 lines
3.4 KiB
Java
Raw Normal View History

2021-06-27 20:41:38 +00:00
package the.bytecode.club.bytecodeviewer.resources.exporting.impl;
import java.io.File;
import javax.swing.JFileChooser;
2021-06-27 20:41:38 +00:00
import the.bytecode.club.bytecodeviewer.BytecodeViewer;
import the.bytecode.club.bytecodeviewer.Configuration;
import the.bytecode.club.bytecodeviewer.gui.components.FileChooser;
import the.bytecode.club.bytecodeviewer.resources.exporting.Exporter;
import the.bytecode.club.bytecodeviewer.util.Dex2Jar;
import the.bytecode.club.bytecodeviewer.util.DialogUtils;
2021-06-27 20:41:38 +00:00
import the.bytecode.club.bytecodeviewer.util.JarUtils;
import the.bytecode.club.bytecodeviewer.util.MiscUtils;
import static the.bytecode.club.bytecodeviewer.Constants.fs;
import static the.bytecode.club.bytecodeviewer.Constants.tempDirectory;
/***************************************************************************
* Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite *
* Copyright (C) 2014 Kalen 'Konloch' Kinloch - http://bytecodeviewer.com *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
***************************************************************************/
2021-06-27 20:41:38 +00:00
/**
* @author Konloch
* @since 6/27/2021
*/
public class DexExport implements Exporter
{
@Override
public void promptForExport()
{
if (BytecodeViewer.promptIfNoLoadedResources())
2021-06-27 20:41:38 +00:00
return;
Thread exportThread = new Thread(() ->
{
2021-07-11 13:55:30 +00:00
if (!BytecodeViewer.autoCompileSuccessful())
2021-06-27 20:41:38 +00:00
return;
JFileChooser fc = new FileChooser(Configuration.getLastSaveDirectory(),
2021-06-27 20:41:38 +00:00
"Select DEX Export",
"Android DEX Files",
"dex");
int returnVal = fc.showSaveDialog(BytecodeViewer.viewer);
if (returnVal == JFileChooser.APPROVE_OPTION)
{
2021-07-19 14:11:14 +00:00
Configuration.setLastSaveDirectory(fc.getSelectedFile());
2021-06-27 20:41:38 +00:00
final File file = fc.getSelectedFile();
String output = file.getAbsolutePath();
//auto append .dex
if (!output.endsWith(".dex"))
2021-12-19 23:24:17 +00:00
output += ".dex";
2021-06-27 20:41:38 +00:00
File outputPath = new File(output);
if (!DialogUtils.canOverwriteFile(outputPath))
return;
2021-06-27 20:41:38 +00:00
Thread saveAsJar = new Thread(() ->
{
2021-07-06 22:57:42 +00:00
BytecodeViewer.updateBusyStatus(true);
2021-06-27 20:41:38 +00:00
final String input = tempDirectory + fs + MiscUtils.getRandomizedName() + ".jar";
JarUtils.saveAsJar(BytecodeViewer.getLoadedClasses(), input);
Thread saveAsDex = new Thread(() ->
{
Dex2Jar.saveAsDex(new File(input), outputPath);
2021-07-06 22:57:42 +00:00
BytecodeViewer.updateBusyStatus(false);
2021-07-01 09:48:10 +00:00
}, "Process DEX");
2021-06-27 20:41:38 +00:00
saveAsDex.start();
2021-07-01 09:48:10 +00:00
}, "Jar Export");
2021-06-27 20:41:38 +00:00
saveAsJar.start();
}
2021-07-01 09:48:10 +00:00
}, "Resource Export");
2021-06-27 20:41:38 +00:00
exportThread.start();
}
}