WordからPDFへの変換は広く行われているドキュメント変換の1つであり、これがMSWordがWordドキュメントをPDFとして保存するための組み込み機能を提供する理由です。 PDFはドキュメントを共有したりオンラインで維持したりするための推奨フォーマットであるため、WordからPDFへの変換の必要性はさまざまなシナリオで発生します。一方、Android搭載のスマートフォンは、アプリを介してスマートフォンに多数の機能を搭載することで、人間の生活を楽にしてきました。これらの傾向に注目して、この記事では、Androidアプリ内でWord文書をPDFに変換する方法を紹介します。デモのために、次の機能を備えた簡単なWord toPDFConverterアプリをAndroid用に数ステップで作成します。
- Word文書をPDFに変換する
- PDFを携帯電話のストレージに保存
- アプリ内でPDFを表示
Android用のWordからPDFへのコンバータライブラリ
MS WordドキュメントをPDF形式に変換するには、Aspose.Words for Android via Javaを使用します。これにより、数行のコードを使用してDOC/DOCXドキュメントをシームレスにPDFファイルに変換できます。 APIをダウンロードするか、Maven構成を使用してインストールできます。
AndroidでWordをPDFに変換する手順
以下は、Java経由でAspose.WordsforAndroidを使用してAndroidで簡単なWordtoPDFConverterアプリを作成する手順です。
- Android Studio(またはEclipse)で新しいプロジェクトを作成し、[空のアクティビティ]テンプレートを選択します。
- プロジェクトを構成します。
- build.gradleファイルを開きます。
- build.gradleに次のリポジトリセクションを追加します。
repositories {
mavenCentral()
maven { url "https://repository.aspose.com/repo/" }
}
- build.gradleの依存関係セクションに次のエントリを追加します。
implementation 'com.google.android.material:material:1.1.0'
implementation 'com.android.support:multidex:2.0.0'
implementation 'com.github.barteksc:android-pdf-viewer:2.8.2'
compile (group: 'com.aspose', name: 'aspose-words', version: '20.6', classifier: 'android.via.java')
- build.gradleのdefaultConfigセクションに次のエントリを追加して、multidexを有効にします。
// enable multiDex
multiDexEnabled true
- 完全なbuild.gradleファイルは次のようになります。
apply plugin: 'com.android.application'
android {
compileSdkVersion 30
buildToolsVersion "30.0.1"
defaultConfig {
applicationId "com.example.wordtopdf"
minSdkVersion 16
targetSdkVersion 30
versionCode 1
versionName "1.0"
// multiDexを有効にする
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
repositories {
mavenCentral()
maven { url "https://repository.aspose.com/repo/" }
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.android.material:material:1.1.0'
implementation 'com.android.support:multidex:2.0.0'
implementation 'com.github.barteksc:android-pdf-viewer:2.8.2'
compile (group: 'com.aspose', name: 'aspose-words', version: '20.6', classifier: 'android.via.java')
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
- activitymain.xmlファイルを開きます。
- メインアクティビティのレイアウトについて、次のスクリプトを貼り付けます。
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<com.github.barteksc.pdfviewer.PDFView
android:id="@+id/pdfView"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout_editor_absoluteX="-26dp"
tools:layout_editor_absoluteY="-16dp" />
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#D3FFFFFF"
android:textColor="#A3A2A2"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteY="39dp" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="408dp"
android:layout_gravity="bottom|right"
android:layout_marginEnd="36dp"
android:layout_marginRight="36dp"
android:layout_marginBottom="140dp"
app:backgroundTint="#00BCD4"
app:layout_anchorGravity="bottom|right|end"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@+id/pdfView"
app:srcCompat="@android:drawable/stat_sys_upload"
tools:ignore="MissingConstraints" />
</androidx.constraintlayout.widget.ConstraintLayout>
- MainActivity.javaファイルを開きます。
- 次のJavaコードをMainActivity.javaに貼り付けます。
package com.example.wordtopdf;
import androidx.annotation.RequiresApi;
import androidx.appcompat.app.AppCompatActivity;
import android.annotation.TargetApi;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import com.aspose.words.Document;
import com.aspose.words.License;
import com.github.barteksc.pdfviewer.PDFView;
import com.google.android.material.floatingactionbutton.FloatingActionButton;
import android.os.Environment;
import android.view.View;
import android.widget.TextView;
import android.widget.Toast;
@TargetApi(Build.VERSION_CODES.FROYO)
public class MainActivity extends AppCompatActivity {
private static final int PICK_PDF_FILE = 2;
private final String storageDir = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS) + File.separator;
private final String outputPDF = storageDir + "Converted_PDF.pdf";
private TextView textView = null;
private Uri document = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Aspose.Wordsライセンスをお持ちの場合は、ライセンスを適用してください。
applyLicense();
// ツリービューを取得し、そのテキストを設定します
textView = (TextView) findViewById(R.id.textView);
textView.setText("Select a Word DOCX file...");
// フローティングボタンのクリックリスナーを定義する
FloatingActionButton myFab = (FloatingActionButton) findViewById(R.id.fab);
myFab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
try {
// ファイルピッカーからWordファイルを開き、PDFに変換します
openaAndConvertFile(null);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
private void openaAndConvertFile(Uri pickerInitialUri) {
// ドキュメントを開くための新しいインテントを作成する
Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
intent.addCategory(Intent.CATEGORY_OPENABLE);
// MSWord文書のmimeタイプ
String[] mimetypes = {"application/vnd.openxmlformats-officedocument.wordprocessingml.document", "application/msword"};
intent.setType("*/*");
intent.putExtra(Intent.EXTRA_MIME_TYPES, mimetypes);
// 活動を開始する
startActivityForResult(intent, PICK_PDF_FILE);
}
@RequiresApi(api = Build.VERSION_CODES.KITKAT)
@Override
public void onActivityResult(int requestCode, int resultCode,
Intent intent) {
super.onActivityResult(requestCode, resultCode, intent);
if (resultCode == Activity.RESULT_OK) {
if (intent != null) {
document = intent.getData();
// 選択したドキュメントを入力ストリームで開きます
try (InputStream inputStream =
getContentResolver().openInputStream(document);) {
Document doc = new Document(inputStream);
// DOCXをPDFとして保存
doc.save(outputPDF);
// トーストとツリービューでPDFファイルの場所を表示する(オプション)
Toast.makeText(MainActivity.this, "File saved in: " + outputPDF, Toast.LENGTH_LONG).show();
textView.setText("PDF saved at: " + outputPDF);
// 変換されたPDFを表示
viewPDFFile();
} catch (FileNotFoundException e) {
e.printStackTrace();
Toast.makeText(MainActivity.this, "File not found: " + e.getMessage(), Toast.LENGTH_LONG).show();
} catch (IOException e) {
e.printStackTrace();
Toast.makeText(MainActivity.this, e.getMessage(), Toast.LENGTH_LONG).show();
} catch (Exception e) {
e.printStackTrace();
Toast.makeText(MainActivity.this, e.getMessage(), Toast.LENGTH_LONG).show();
}
}
}
}
public void viewPDFFile() {
// PDFをPDFViewにロードします
PDFView pdfView = (PDFView) findViewById(R.id.pdfView);
pdfView.fromFile(new File(outputPDF)).load();
}
public void applyLicense()
{
// ライセンスの設定
License lic= new License();
InputStream inputStream = getResources().openRawResource(R.raw.license);
try {
lic.setLicense(inputStream);
} catch (Exception e) {
e.printStackTrace();
}
}
}
- アプリをビルドして、Androidスマートフォンまたは仮想デバイス内で実行します。
- [設定]->[アプリ]->[権限]->[権限マネージャー]->[ストレージ]に移動して、このアプリにストレージへのアクセスを許可します。
Word toPDFConvetrer-ソースコード
GitHubからWordtoPDFConverterアプリの完全なソースコードをダウンロードします。
結論
この記事では、Androidアプリ内でWordをPDFに変換する方法を学びました。同様の機能を独自のアプリに統合したり、このコンバーターを目的のレベルまで拡張したりできます。 Aspose.Words for Androidの詳細については、ドキュメントをご覧ください。