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

76 lines
2.2 KiB
Java
Raw Normal View History

2021-06-27 20:41:38 +00:00
package the.bytecode.club.bytecodeviewer.resources.exporting.impl;
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.DialogueUtils;
2021-06-27 20:41:38 +00:00
import the.bytecode.club.bytecodeviewer.util.JarUtils;
import the.bytecode.club.bytecodeviewer.util.MiscUtils;
import javax.swing.*;
import java.io.File;
import static the.bytecode.club.bytecodeviewer.Constants.fs;
import static the.bytecode.club.bytecodeviewer.Constants.tempDirectory;
/**
* @author Konloch
* @since 6/27/2021
*/
public class DexExport implements Exporter
{
@Override
public void promptForExport()
{
2021-07-07 02:46:12 +00:00
if (BytecodeViewer.promptIfNoLoadedClasses())
2021-06-27 20:41:38 +00:00
return;
Thread exportThread = new Thread(() ->
{
2021-07-03 19:29:31 +00:00
if (BytecodeViewer.autoCompileSuccessful())
2021-06-27 20:41:38 +00:00
return;
JFileChooser fc = new FileChooser(Configuration.getLastDirectory(),
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)
{
Configuration.lastDirectory = fc.getSelectedFile().getAbsolutePath();
final File file = fc.getSelectedFile();
String output = file.getAbsolutePath();
//auto append .dex
if (!output.endsWith(".dex"))
output = output + ".dex";
File outputPath = new File(output);
if (!DialogueUtils.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();
}
}