You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Программа позволяет кодировать/декодировать выбранный файл в/из MIME (Base64)
2
+
Программа представляет диалоговое окно с тремя кнопками, первая из которых позволяет выбрать файл. При нажатии на вторую программа кодирует выбранный файл и сохраняет закодированный файл в новом файле с расширением *.base64.
3
+
4
+
При нажатии на третью кнопку, программа декодирует выбранный файл и сохраняет даннаые в новом файле, при этом добавляя окончание к имени файла и срасширение *_base64.dec
This program is written on Java programming language. The purpose of the app is to encode/decode selected file using Base64 (MIME)
9
+
The program uses Java Swing Frame with three buttons. First button allows the user to select a file from computer. The second button does Base64 encryption of selected file. Doing that the program writes encrypted data into new file with *.base64 file extension. The third button makes decryption of selected file. When program decrypts the file from Base64 encryption it also creates new file but with *_base64.dec file extension
0 commit comments