У меня есть хорошо управляемый код и проект в Java
. Но мне нужно разработать еще один проект из него в Kotlin
. Итак, я конвертировал весь код в Kotlin
. Но есть код ZipFileManager.kt
, который используется для архивирования / распаковки файлов.
Вот код (Kotlin
):
object ZipFileManager {
private val BUFFER_SIZE = 6 * 1024
@Throws(IOException::class)
fun zip(files: Array<String>, zipFile: String) {
var origin: BufferedInputStream? = null
val out = ZipOutputStream(BufferedOutputStream(FileOutputStream(zipFile)))
try {
val data = ByteArray(BUFFER_SIZE)
for (file in files) {
val fi = FileInputStream(file)
origin = BufferedInputStream(fi, BUFFER_SIZE)
try {
val entry = ZipEntry(file.substring(file.lastIndexOf("/") + 1))
out.putNextEntry(entry)
var count: Int
while ((count = origin.read(data, 0, BUFFER_SIZE)) != -1) {
out.write(data, 0, count)
}
} finally {
origin.close()
}
}
} finally {
out.close()
}
}
fun unzip(zipFileUrl: String, fileLocation: String) {
try {
val f = File(fileLocation)
if (!f.isDirectory) {
f.mkdirs()
}
ZipInputStream(FileInputStream(zipFileUrl)).use { zin ->
var ze: ZipEntry? = null
while ((ze = zin.nextEntry) != null) {
// Log.e("UnZipFILE", "Unzipping....");
val path = fileLocation + ze!!.name
if (ze.isDirectory) {
val unzipFile = File(path)
if (!unzipFile.isDirectory) {
unzipFile.mkdirs()
}
} else {
FileOutputStream(path, false).use { fout ->
val buffer = ByteArray(1024)
var read: Int
while ((read = zin.read(buffer)) != -1) {
fout.write(buffer, 0, read)
}
zin.closeEntry()
}
}
}
}
} catch (e: Exception) {
e.printStackTrace()
Log.e("UnZipException", Log.getStackTraceString(e))
}
}
}
Итак, я пробую этот код, но он показывает ошибку времени компиляции, например:
Assignments are not expressions, and only expressions are allowed in this context
в fun zip
в строке while ((count = origin.read(data, 0, BUFFER_SIZE)) != -1)
и дать еще одну такую же ошибку времени компиляции в строке while ((ze = zin.nextEntry) != null)
и в строке while ((read = zin.read(buffer)) != -1)
.
Итак, моя большая проблема - использовать этот код в Kotlin
. Таким образом, любое тело может помочь, кто знает Kotlin
и как я могу использовать этот тип структуры цикла в Kotlin
?
Есть также у меня Java
код, если какое-либо тело хочет увидеть:
public class ZipFileManager {
private static int BUFFER_SIZE = 6 * 1024;
public static void zip(String[] files, String zipFile) throws IOException {
BufferedInputStream origin = null;
ZipOutputStream out = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(zipFile)));
try {
byte data[] = new byte[BUFFER_SIZE];
for (String file : files) {
FileInputStream fi = new FileInputStream(file);
origin = new BufferedInputStream(fi, BUFFER_SIZE);
try {
ZipEntry entry = new ZipEntry(file.substring(file.lastIndexOf("/") + 1));
out.putNextEntry(entry);
int count;
while ((count = origin.read(data, 0, BUFFER_SIZE)) != -1) {
out.write(data, 0, count);
}
} finally {
origin.close();
}
}
} finally {
out.close();
}
}
public static void unzip(String zipFileUrl, String fileLocation) {
try {
File f = new File(fileLocation);
if (!f.isDirectory()) {
f.mkdirs();
}
try (ZipInputStream zin = new ZipInputStream(new FileInputStream(zipFileUrl))) {
ZipEntry ze = null;
while ((ze = zin.getNextEntry()) != null) {
// Log.e("UnZipFILE", "Unzipping....");
String path = fileLocation + ze.getName();
if (ze.isDirectory()) {
File unzipFile = new File(path);
if (!unzipFile.isDirectory()) {
unzipFile.mkdirs();
}
} else {
try (FileOutputStream fout = new FileOutputStream(path, false)) {
byte[] buffer = new byte[1024];
int read;
while ((read = zin.read(buffer)) != -1) {
fout.write(buffer, 0, read);
}
zin.closeEntry();
}
}
}
}
} catch (Exception e) {
e.printStackTrace();
Log.e("UnZipException", Log.getStackTraceString(e));
}
}
}
Я также пытаюсь управлять циклом, как:
do {
ze = zin.nextEntry
} while (ze != null)
Но файл не распакован или поврежден. Так что, если у какого-либо органа есть идея управления этим типом цикла, это будет очень полезно.