<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Documentation – HTML</title>
    <link>https://docs.aspose.com/cells/ja/java/html/</link>
    <description>Recent content in HTML on Documentation</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>ja</language>
    
	  <atom:link href="https://docs.aspose.com/cells/ja/java/html/index.xml" rel="self" type="application/rss+xml" />
    
    
      
        
      
    
    
    <item>
      <title>Java: 見出しを含めてExcelをHTMLに変換する</title>
      <link>https://docs.aspose.com/cells/ja/java/convert-excel-to-html-with-headings/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/convert-excel-to-html-with-headings/</guid>
      <description>
        
        
        &lt;h2 id=&#34;見出しを使用したexcelからhtmlへの変換&#34;&gt;&lt;strong&gt;見出しを使用したExcelからHTMLへの変換&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Aspose.Cellsは、ExcelをHTMLに変換する際に見出しをエクスポートするオプションを提供しています。これには、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#ExportHeadings&#34;&gt;&lt;strong&gt;HtmlSaveOptions.ExportHeadings&lt;/strong&gt;&lt;/a&gt;プロパティを &lt;strong&gt;true&lt;/strong&gt; に設定する必要があります。&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#ExportHeadings&#34;&gt;&lt;strong&gt;HtmlSaveOptions.ExportHeadings&lt;/strong&gt;&lt;/a&gt; プロパティのデフォルト値は &lt;strong&gt;false&lt;/strong&gt; です。以下に、このコードで生成された出力ファイルを示します。&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;convert-excel-to-html-with-headings_1.jpg&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;h2 id=&#34;サンプルコード&#34;&gt;&lt;strong&gt;サンプルコード&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-AsposeCellsExamples-HTML-PrintHeadings-1.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: HTMLへの保存時にDownlevel表示されたコメントを無効にする</title>
      <link>https://docs.aspose.com/cells/ja/java/disable-downlevel-revealed-comments-while-saving-to-html/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/disable-downlevel-revealed-comments-while-saving-to-html/</guid>
      <description>
        
        
        &lt;h2 id=&#34;可能な使用シナリオ&#34;&gt;&lt;strong&gt;可能な使用シナリオ&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;ExcelファイルをHTMLに保存すると、Aspose.CellsはDownlevel条件付きコメントを表示します。これらの条件付きコメントは、古いバージョンのInternet Explorerに関連することが多く、現代のWebブラウザには関係ありません。詳細については、次のリンクで詳しく説明しています。&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://en.wikipedia.org/wiki/Conditional_comment#Downlevel-revealed_conditional_comment&#34;&gt;条件付きコメント - Downlevel-revealed条件付きコメント&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Aspose.Cellsを使用して、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#DisableDownlevelRevealedComments&#34;&gt;&lt;strong&gt;HtmlSaveOptions.DisableDownlevelRevealedComments&lt;/strong&gt;&lt;/a&gt;プロパティを&lt;strong&gt;true&lt;/strong&gt;に設定することで、これらのDownlevel Revealed Commentsを排除できます。&lt;/p&gt;
&lt;h2 id=&#34;html-への保存時にダウンレベルの表示されたコメントを無効にする&#34;&gt;&lt;strong&gt;HTML への保存時にダウンレベルの表示されたコメントを無効にする&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;以下のサンプルコードは、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#DisableDownlevelRevealedComments&#34;&gt;&lt;strong&gt;HtmlSaveOptions.DisableDownlevelRevealedComments&lt;/strong&gt;&lt;/a&gt;プロパティの使用例を示しています。このプロパティを&lt;strong&gt;true&lt;/strong&gt;に設定しない場合の効果を示すスクリーンショットをダウンロードしてください。&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;disable-downlevel-revealed-comments-while-saving-to-html_1.png&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;h2 id=&#34;サンプルコード&#34;&gt;&lt;strong&gt;サンプルコード&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-AsposeCellsExamples-LoadingSavingConvertingAndManaging-DisableDownlevelRevealedCommentsWhileSavingToHTML.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: Excel を HTML に変換する際に未使用のスタイルを除外</title>
      <link>https://docs.aspose.com/cells/ja/java/exclude-unused-styles-during-excel-to-html-conversion/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/exclude-unused-styles-during-excel-to-html-conversion/</guid>
      <description>
        
        
        &lt;h2 id=&#34;可能な使用シナリオ&#34;&gt;&lt;strong&gt;可能な使用シナリオ&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Microsoft Excel ファイルには多くの未使用スタイルが含まれる場合があります。Excel ファイルを HTML 形式にエクスポートすると、これらの未使用スタイルもエクスポートされます。これにより HTML のサイズが増加することがあります。&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#ExcludeUnusedStyles&#34;&gt;&lt;strong&gt;HtmlSaveOptions.ExcludeUnusedStyles&lt;/strong&gt;&lt;/a&gt; プロパティを使用して、Excel ファイルを HTML に変換する際に未使用のスタイルを除外できます。それを true に設定すると、すべての未使用のスタイルが出力される HTML から除外されます。次のスクリーンショットは、出力された HTML 内のサンプル未使用スタイルを表示しています。&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;exclude-unused-styles-during-excel-to-html-conversion_1.png&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;h2 id=&#34;excelからhtmlへの変換時に未使用のスタイルを除外&#34;&gt;&lt;strong&gt;ExcelからHTMLへの変換時に未使用のスタイルを除外&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;次のサンプルコードは、ワークブックを作成し、未使用の名前付きスタイルも作成します。&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#ExcludeUnusedStyles&#34;&gt;&lt;strong&gt;HtmlSaveOptions.ExcludeUnusedStyles&lt;/strong&gt;&lt;/a&gt; を true に設定しているため、この未使用の名前付きスタイルは &lt;a href=&#34;61767781.zip&#34;&gt;出力 HTML&lt;/a&gt; にエクスポートされません。false に設定すると、この未使用のスタイルは出力された HTML 内に含まれます。&lt;/p&gt;
&lt;h2 id=&#34;サンプルコード&#34;&gt;&lt;strong&gt;サンプルコード&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=HTML-ExcludeUnusedStylesInExcelToHTML.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: Excel ファイルを HTML に保存する際にコメントをエクスポート</title>
      <link>https://docs.aspose.com/cells/ja/java/export-comments-while-saving-excel-file-to-html/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/export-comments-while-saving-excel-file-to-html/</guid>
      <description>
        
        
        &lt;h2 id=&#34;可能な使用シナリオ&#34;&gt;&lt;strong&gt;可能な使用シナリオ&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Excel ファイルを HTML に保存する際、コメントはエクスポートされません。ただし、Aspose.Cells ではこの機能を &lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#IsExportComments&#34;&gt;&lt;strong&gt;HtmlSaveOptions.IsExportComments&lt;/strong&gt;&lt;/a&gt; プロパティを使用して提供しています。true に設定すると、HTML に Excel ファイル内のコメントが表示されます。&lt;/p&gt;
&lt;h2 id=&#34;excel-ファイルを-html-に保存する際にコメントをエクスポート&#34;&gt;&lt;strong&gt;Excel ファイルを HTML に保存する際にコメントをエクスポート&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;次のサンプルコードは、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#IsExportComments&#34;&gt;&lt;strong&gt;HtmlSaveOptions.IsExportComments&lt;/strong&gt;&lt;/a&gt; プロパティの使用方法を説明しています。コードが true に設定されたときの HTML への影響を示すスクリーンショットです。参照には、&lt;a href=&#34;50528270.xlsx&#34;&gt;サンプル Excel ファイル&lt;/a&gt; と生成された&lt;a href=&#34;50528269&#34;&gt;HTML&lt;/a&gt; をダウンロードしてください。&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;export-comments-while-saving-excel-file-to-html_1.png&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;h2 id=&#34;サンプルコード&#34;&gt;&lt;strong&gt;サンプルコード&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-AsposeCellsExamples-LoadingSavingConvertingAndManaging-ExportCommentsWhileSavingExcelFileToHtml.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: Excelのドキュメント、ワークブック、ワークシートのプロパティをHTMLにエクスポートする</title>
      <link>https://docs.aspose.com/cells/ja/java/export-document-workbook-and-worksheet-properties-in-excel-to-html-conversion/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/export-document-workbook-and-worksheet-properties-in-excel-to-html-conversion/</guid>
      <description>
        
        
        &lt;h2 id=&#34;可能な使用シナリオ&#34;&gt;&lt;strong&gt;可能な使用シナリオ&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Microsoft ExcelファイルをMicrosoft ExcelまたはAspose.Cellsを使用してHTMLにエクスポートすると、次のスクリーンショットに示すように、ドキュメント、ワークブック、ワークシートのさまざまな種類のプロパティもエクスポートされます。 &lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#ExportDocumentProperties&#34;&gt;&lt;strong&gt;HtmlSaveOptions.ExportDocumentProperties&lt;/strong&gt;&lt;/a&gt;、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#ExportWorkbookProperties&#34;&gt;&lt;strong&gt;HtmlSaveOptions.ExportWorkbookProperties&lt;/strong&gt;&lt;/a&gt;、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#ExportWorksheetProperties&#34;&gt;&lt;strong&gt;HtmlSaveOptions.ExportWorksheetProperties&lt;/strong&gt;&lt;/a&gt;を&lt;strong&gt;false&lt;/strong&gt;に設定することで、これらのプロパティをエクスポートしないようにすることができます。これらのプロパティのデフォルト値は&lt;strong&gt;true&lt;/strong&gt;です。次のスクリーンショットは、これらのプロパティがエクスポートされたHTMLでどのように表示されるかを示しています。&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;export-document-workbook-and-worksheet-properties-in-excel-to-html-conversion_1.png&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;h2 id=&#34;excelのドキュメントワークブックワークシートのプロパティをhtmlにエクスポートする&#34;&gt;&lt;strong&gt;Excelのドキュメント、ワークブック、ワークシートのプロパティをHTMLにエクスポートする&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;次のサンプルコードは、&lt;a href=&#34;61767784.xlsx&#34;&gt;サンプルExcelファイル&lt;/a&gt;を読み込み、HTMLに変換し、&lt;a href=&#34;61767783.zip&#34;&gt;出力HTML&lt;/a&gt;にドキュメント、ワークブック、ワークシートのプロパティをエクスポートしません。&lt;/p&gt;
&lt;h2 id=&#34;サンプルコード&#34;&gt;&lt;strong&gt;サンプルコード&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=HTML-ExportDocumentWorkbookAndWorksheetPropertiesInHTML.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: HTMLに印刷エリア範囲をエクスポートする</title>
      <link>https://docs.aspose.com/cells/ja/java/export-print-area-range-to-html/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/export-print-area-range-to-html/</guid>
      <description>
        
        
        &lt;h2 id=&#34;可能な使用シナリオ&#34;&gt;可能な使用シナリオ&lt;/h2&gt;
&lt;p&gt;選択したセル範囲（印刷エリア）のみをHTMLにエクスポートする必要があるというのは非常に一般的なシナリオです。この機能はすでにPDFの出力に対して利用可能ですが、HTMLの場合も実行できます。まず、ワークシートのページ設定オブジェクトで印刷エリアを設定します。後で、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#ExportPrintAreaOnly&#34;&gt;&lt;strong&gt;HtmlSaveOptions.ExportPrintAreaOnly&lt;/strong&gt;&lt;/a&gt;プロパティを使用して選択した範囲のみをエクスポートしてください。&lt;/p&gt;
&lt;h2 id=&#34;htmlに印刷エリア範囲をエクスポートするためのjavaコード&#34;&gt;HTMLに印刷エリア範囲をエクスポートするためのJavaコード&lt;/h2&gt;
&lt;p&gt;次のサンプルコードはワークブックを読み込み、印刷エリアをHTMLにエクスポートします。この機能のテスト用のサンプルファイルは、以下のリンクからダウンロードできます。&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;79527960.xlsx&#34;&gt;sampleInlineCharts.xlsx&lt;/a&gt;&lt;/p&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-AsposeCellsExamples-HTML-ExportPrintAreaToHtml-1.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;


      </description>
    </item>
    
    <item>
      <title>Java: Webブラウザでサポートされていない場合の類似の境界線スタイルをHTMLにエクスポートする</title>
      <link>https://docs.aspose.com/cells/ja/java/export-similar-border-style-when-border-style-is-not-supported-by-web-browsers/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/export-similar-border-style-when-border-style-is-not-supported-by-web-browsers/</guid>
      <description>
        
        
        &lt;h2 id=&#34;可能な使用シナリオ&#34;&gt;&lt;strong&gt;可能な使用シナリオ&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Microsoft ExcelはWebブラウザでサポートされていないような点線の境界線などをサポートしています。Aspose.Cellsを使用してこのようなExcelファイルをHTMLに変換すると、そのような境界線が削除されますが、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#ExportSimilarBorderStyle&#34;&gt;&lt;strong&gt;HtmlSaveOptions.ExportSimilarBorderStyle&lt;/strong&gt;&lt;/a&gt;プロパティで類似の境界線も表示できるようになります。その値を&lt;strong&gt;true&lt;/strong&gt;に設定してください。これにより、サポートされていない境界線もHTMLファイルにエクスポートされます。&lt;/p&gt;
&lt;h2 id=&#34;webブラウザでサポートされていない場合の類似の境界線スタイルをhtmlにエクスポートする&#34;&gt;&lt;strong&gt;Webブラウザでサポートされていない場合の類似の境界線スタイルをHTMLにエクスポートする&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;次のサンプルコードは、次のスクリーンショットに示されているサポートされていない境界線を含む&lt;a href=&#34;64716832.xlsx&#34;&gt;sample Excelファイル&lt;/a&gt;を読み込みます。このスクリーンショットは、&lt;a href=&#34;64716831.zip&#34;&gt;output HTML&lt;/a&gt;内の&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#ExportSimilarBorderStyle&#34;&gt;&lt;strong&gt;HtmlSaveOptions.ExportSimilarBorderStyle&lt;/strong&gt;&lt;/a&gt;プロパティの効果をさらに説明しています。&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;export-similar-border-style-when-border-style-is-not-supported-by-web-browsers_1.png&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;h2 id=&#34;サンプルコード&#34;&gt;&lt;strong&gt;サンプルコード&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=HTML-ExportSimilarBorderStyle.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: ワークブックにHTMLをロードする際の列と行を自動調整する</title>
      <link>https://docs.aspose.com/cells/ja/java/autofit-columns-and-rows-while-loading-html-in-workbook/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/autofit-columns-and-rows-while-loading-html-in-workbook/</guid>
      <description>
        
        
        &lt;h2 id=&#34;可能な使用シナリオ&#34;&gt;&lt;strong&gt;可能な使用シナリオ&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/Workbook&#34;&gt;&lt;strong&gt;Workbook&lt;/strong&gt;&lt;/a&gt; オブジェクト内でHTMLファイルをロードする際、列と行を自動調整できます。この目的のために&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlloadoptions#AutoFitColsAndRows&#34;&gt;&lt;strong&gt;HtmlLoadOptions.AutoFitColsAndRows&lt;/strong&gt;&lt;/a&gt;プロパティを &lt;strong&gt;true&lt;/strong&gt; に設定してください。&lt;/p&gt;
&lt;h2 id=&#34;ワークブックにhtmlをロードする際の列と行を自動調整する&#34;&gt;&lt;strong&gt;ワークブックにHTMLをロードする際の列と行を自動調整する&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;次のサンプルコードでは、まずロードオプションなしでサンプルHTMLをワークブックにロードし、XLSX形式で保存します。そして、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlloadoptions#AutoFitColsAndRows&#34;&gt;&lt;strong&gt;HtmlLoadOptions.AutoFitColsAndRows&lt;/strong&gt;&lt;/a&gt;プロパティを &lt;strong&gt;true&lt;/strong&gt; に設定してサンプルHTMLを再びワークブックにロードし、XLSX形式で保存します。&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlloadoptions#AutoFitColsAndRows&#34;&gt;&lt;strong&gt;HtmlLoadOptions.AutoFitColsAndRows&lt;/strong&gt;&lt;/a&gt; プロパティの効果は、以下のスクリーンショットに示されています。&lt;a href=&#34;outputWithout_AutoFitColsAndRows.xlsx&#34;&gt;自動調整なしの出力Excelファイル&lt;/a&gt; および &lt;a href=&#34;outputWith_AutoFitColsAndRows.xlsx&#34;&gt;自動調整ありの出力Excelファイル&lt;/a&gt; をダウンロードしてください。&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;autofit-columns-and-rows-while-loading-html-in-workbook_1.png&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;h2 id=&#34;サンプルコード&#34;&gt;&lt;strong&gt;サンプルコード&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-AsposeCellsExamples-LoadingSavingConvertingAndManaging-AutoFitColumnsRowsLoadingHTML-1.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: StreamProviderを使用してHTMLをExcelにロード</title>
      <link>https://docs.aspose.com/cells/ja/java/convert-html-to-excel-with-streamprovider/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/convert-html-to-excel-with-streamprovider/</guid>
      <description>
        
        
        

&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;p&gt;外部リソースを含むHTMLをロードする際、通常次の2つの問題に直面します。&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;HTMLファイルで参照される画像や外部リソースが相対パスで取得できない。&lt;/li&gt;
&lt;li&gt;HTMLファイルで参照される外部リソースのパスをマップする必要があります。&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;この記事では、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/IStreamProvider&#34;&gt;&lt;strong&gt;IStreamProvider&lt;/strong&gt;&lt;/a&gt;プロパティの設定に関する&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlloadoptions#StreamProvider&#34;&gt;&lt;strong&gt;HtmlLoadOptions.StreamProvider&lt;/strong&gt;&lt;/a&gt;インターフェースの実装方法について説明します。このインターフェースを実装することで、HTMLストリームの読み込み中に外部リソースをロードすることができます。または、これらの外部リソースは相対的であることができます。&lt;/p&gt;

&lt;/div&gt;

&lt;p&gt;これは、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlloadoptions#StreamProvider&#34;&gt;&lt;strong&gt;HtmlLoadOptions.StreamProvider&lt;/strong&gt;&lt;/a&gt;の使用を示すメインコードです&lt;/p&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Load-Html-With-StreamProvider.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: 出力HTMLでワークシートのCSSを別々にエクスポートする</title>
      <link>https://docs.aspose.com/cells/ja/java/export-worksheet-css-separately-in-output-html/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/export-worksheet-css-separately-in-output-html/</guid>
      <description>
        
        
        &lt;h2 id=&#34;可能な使用シナリオ&#34;&gt;&lt;strong&gt;可能な使用シナリオ&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Aspose.Cellsでは、ExcelファイルをHTMLに変換する際にワークシートのCSSを別々にエクスポートする機能を提供しています。この目的で、&lt;a href=&#34;true&#34;&gt;HtmlSaveOptions.ExportWorksheetCSSSeparately&lt;/a&gt;プロパティを使用してください。&lt;/p&gt;
&lt;h2 id=&#34;出力htmlでワークシートのcssを別々にエクスポートする&#34;&gt;&lt;strong&gt;出力HTMLでワークシートのCSSを別々にエクスポートする&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;次のサンプルコードは、Excelファイルを作成し、セルB5に赤色のテキストを追加し、&lt;a href=&#34;true&#34;&gt;HtmlSaveOptions.ExportWorksheetCSSSeparately&lt;/a&gt;プロパティを使用してHTML形式で保存します。参照用のコードで生成された&lt;a href=&#34;60489780.zip&#34;&gt;output HTML&lt;/a&gt;には結果としてstylesheet.cssが含まれています。&lt;/p&gt;
&lt;h2 id=&#34;サンプルコード&#34;&gt;&lt;strong&gt;サンプルコード&lt;/strong&gt;&lt;/h2&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=HTML-ExportWorksheetCSSSeparatelyInOutputHTML.java&#34;&gt;&lt;/script&gt;

&lt;h2 id=&#34;単一のシートのワークブックをhtmlにエクスポートする&#34;&gt;&lt;strong&gt;単一のシートのワークブックをHTMLにエクスポートする&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Aspose.Cellsを使用して複数のシートを持つワークブックをHTMLに変換すると、HTMLファイルとCSSおよび複数のHTMLファイルを含むフォルダが作成されます。このHTMLファイルをブラウザで開くと、タブが表示されます。ワークブックが1つのワークシートでHTMLに変換された場合も同様の動作が必要です。以前は、1枚のシートのワークブックには別個のフォルダが作成されず、HTMLファイルのみが作成されていました。このようなHTMLファイルは、ブラウザで開かれるとタブが表示されませんでした。Excelは1つのシートに適切なフォルダとHTMLを作成し、そのためAspose.Cellsを使用して同じ動作を実装します。サンプルファイルは以下のリンクからダウンロードして、以下のサンプルコードで使用できます。&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;79527948.xlsx&#34;&gt;sampleSingleSheet.xlsx&lt;/a&gt;&lt;/p&gt;
&lt;h2 id=&#34;サンプルコード-1&#34;&gt;&lt;strong&gt;サンプルコード&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-AsposeCellsExamples-HTML-SetSingleSheetTabNameInHtml-1.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: HTMLに保存する際に非表示のワークシートコンテンツをエクスポートしないようにする</title>
      <link>https://docs.aspose.com/cells/ja/java/prevent-exporting-hidden-worksheet-contents-on-saving-to/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/prevent-exporting-hidden-worksheet-contents-on-saving-to/</guid>
      <description>
        
        
        

&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

ExcelワークブックをHTMLに保存できます。ただし、ワークブックに非表示のワークシートが含まれている場合、Aspose.Cellsはデフォルトでは非表示のワークシートのコンテンツをHTML出力（_files）ディレクトリにエクスポートします。この方法で非表示のワークシートのコンテンツをエクスポートすることは適切ではありません。たとえば、非表示のワークシートにHTML出力ディレクトリにエクスポートされてはならない画像が含まれている場合などです。
&lt;/div&gt;

&lt;p&gt;Aspose.Cellsは&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#ExportHiddenWorksheet&#34;&gt;&lt;strong&gt;HtmlSaveOptions.ExportHiddenWorksheet&lt;/strong&gt;&lt;/a&gt;プロパティを提供します。デフォルトでは、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#ExportHiddenWorksheet&#34;&gt;&lt;strong&gt;ExportHiddenWorksheet&lt;/strong&gt;&lt;/a&gt;プロパティが&lt;strong&gt;true&lt;/strong&gt;に設定されています。&lt;strong&gt;false&lt;/strong&gt;に設定すると、Aspose.Cellsは非表示のワークシートコンテンツをエクスポートしません。&lt;/p&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-main-java-com-aspose-cells-examples-articles-PreventExportingHiddenWorksheetContent-PreventExportingHiddenWorksheetContent.java&#34;&gt;&lt;/script&gt;

&lt;p&gt;非表示のワークシートをエクスポートするかどうかを制御する以外にも、ワークブックをHTMLにエクスポートする際の追加設定を行うことができます。以下の記事では、Aspose.CellsがワークブックをHTMLにエクスポートする際にサポートされる他の機能を示しています。&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://docs.aspose.com/cells/cells/ja/java/convert-excel-to-html-with-headings/&#34;&gt;見出しを使用したExcelからHTMLへの変換&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://docs.aspose.com/cells/cells/ja/java/exclude-unused-styles-during-excel-to-html-conversion/&#34;&gt;ExcelからHTMLへの変換時に未使用のスタイルを除外&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://docs.aspose.com/cells/cells/ja/java/export-comments-while-saving-excel-file-to-html/&#34;&gt;ExcelファイルをHTMLに保存する際にコメントをエクスポート&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://docs.aspose.com/cells/cells/ja/java/hiding-overlaid-content-with-crosshideright-while-saving-to-html/&#34;&gt;HTMLに保存する際のボーダースタイルがWebブラウザでサポートされていない場合に似たボーダースタイルをエクスポートする&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://docs.aspose.com/cells/cells/ja/java/export-similar-border-style-when-border-style-is-not-supported-by-web-browsers/&#34;&gt;Webブラウザでサポートされていない場合の類似の境界線スタイルをHTMLにエクスポートする&lt;/a&gt;
&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Java: HTMLで保存する際のCrossHideRightでオーバーレイされたコンテンツを非表示にする</title>
      <link>https://docs.aspose.com/cells/ja/java/hiding-overlaid-content-with-crosshideright-while-saving-to-html/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/hiding-overlaid-content-with-crosshideright-while-saving-to-html/</guid>
      <description>
        
        
        &lt;h2 id=&#34;可能な使用シナリオ&#34;&gt;&lt;strong&gt;可能な使用シナリオ&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;ExcelファイルをHTMLに保存する際、セル文字列のさまざまな交差タイプを指定できます。デフォルトでは、Aspose.CellsはMicrosoft Excelに従ってHTMLを生成しますが、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#HtmlCrossStringType&#34;&gt;&lt;strong&gt;HtmlSaveOptions.HtmlCrossStringType&lt;/strong&gt;&lt;/a&gt;を&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlcrosstype#CROSS-HIDE-RIGHT&#34;&gt;&lt;strong&gt;CROSS_HIDE_RIGHT&lt;/strong&gt;&lt;/a&gt;に変更すると、セル文字列と重なっているセルの右側にあるすべての文字列を非表示にします。&lt;/p&gt;
&lt;h2 id=&#34;htmlに保存する際のボーダースタイルがwebブラウザでサポートされていない場合に似たボーダースタイルをエクスポートする&#34;&gt;&lt;strong&gt;HTMLに保存する際のボーダースタイルがWebブラウザでサポートされていない場合に似たボーダースタイルをエクスポートする&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;以下のサンプルコードでは、&lt;a href=&#34;64716916.xlsx&#34;&gt;サンプルExcelファイル&lt;/a&gt;をロードし、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#HtmlCrossStringType&#34;&gt;&lt;strong&gt;HtmlSaveOptions.HtmlCrossStringType&lt;/strong&gt;&lt;/a&gt;を&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlcrosstype#CROSS-HIDE-RIGHT&#34;&gt;&lt;strong&gt;CROSS_HIDE_RIGHT&lt;/strong&gt;&lt;/a&gt;に設定した後に&lt;a href=&#34;64716915.zip&#34;&gt;output HTML&lt;/a&gt;に保存します。スクリーンショットは、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlcrosstype#CROSS-HIDE-RIGHT&#34;&gt;&lt;strong&gt;CROSS_HIDE_RIGHT&lt;/strong&gt;&lt;/a&gt;がデフォルトの出力から出力されたHTMLに影響を与える方法を説明しています。&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;hiding-overlaid-content-with-crosshideright-while-saving-to-html_1.png&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;h2 id=&#34;サンプルコード&#34;&gt;&lt;strong&gt;サンプルコード&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=HTML-HidingOverlaidContentWithCrossHideRightWhileSavingToHtml.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: ExcelをHTMLに変換する際、PresentationPreferenceオプションを使用してレイアウトを向上させる</title>
      <link>https://docs.aspose.com/cells/ja/java/excel-to-html-use-presentationpreference-option-for-better-layout/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/excel-to-html-use-presentationpreference-option-for-better-layout/</guid>
      <description>
        
        
        

&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

Aspose.Cellsは、Microsoft ExcelファイルをHTMLまたはMHT形式に保存する際に、開発者が使用できる便利な&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#PresentationPreference&#34;&gt;&lt;strong&gt;HtmlSaveOptions.PresentationPreference&lt;/strong&gt;&lt;/a&gt;プロパティを提供します。このプロパティのデフォルト値は&lt;strong&gt;false&lt;/strong&gt;です。良い見た目のプレゼンテーションを得るためには、このプロパティを&lt;strong&gt;true&lt;/strong&gt;に設定することをお勧めします。
&lt;/div&gt;

&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-main-java-com-aspose-cells-examples-articles-ExceltoHTMLPresentationPreferenceOption-ExceltoHTMLPresentationPreferenceOption.java&#34;&gt;&lt;/script&gt;

&lt;p&gt;ExcelからHTMLへの変換に関する以下の記事が役立つことがあります&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://docs.aspose.com/cells/cells/ja/java/prevent-exporting-hidden-worksheet-contents-on-saving-to/&#34;&gt;HTMLに保存する際に非表示のワークシートコンテンツをエクスポートしない&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://docs.aspose.com/cells/cells/ja/java/export-worksheet-css-separately-in-output-html/&#34;&gt;出力HTMLでワークシートのCSSを別々にエクスポートする&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://docs.aspose.com/cells/cells/ja/java/disable-downlevel-revealed-comments-while-saving-to-html/&#34;&gt;HTML への保存時にダウンレベルの表示されたコメントを無効にする&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://docs.aspose.com/cells/cells/ja/java/export-document-workbook-and-worksheet-properties-in-excel-to-html-conversion/&#34;&gt;Excel を HTML に変換する際に文書のワークブックとワークシートのプロパティをエクスポート&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://docs.aspose.com/cells/cells/ja/java/export-print-area-range-to-html/&#34;&gt;印刷範囲を HTML にエクスポート&lt;/a&gt;
&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Java: HtmlSaveOptions.TableCssIdプロパティでテーブル要素スタイルをプレフィックス</title>
      <link>https://docs.aspose.com/cells/ja/java/prefix-table-elements-styles-with-htmlsaveoptions-tablecssid-property/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/prefix-table-elements-styles-with-htmlsaveoptions-tablecssid-property/</guid>
      <description>
        
        
        &lt;h2 id=&#34;可能な使用シナリオ&#34;&gt;&lt;strong&gt;可能な使用シナリオ&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Aspose.Cellsを使用すると、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#TableCssId&#34;&gt;&lt;strong&gt;HtmlSaveOptions.TableCssId&lt;/strong&gt;&lt;/a&gt;プロパティでテーブル要素スタイルにプレフィックスを付けることができます。たとえば、&lt;em&gt;MyTest_TableCssId&lt;/em&gt;のような値でこのプロパティを設定した場合、以下に示すようなテーブル要素のスタイルが見つかります&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-java&#34; data-lang=&#34;java&#34;&gt;&lt;span class=&#34;n&#34;&gt;table&lt;/span&gt;&lt;span class=&#34;err&#34;&gt;#&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;MyTest_TableCssId&lt;/span&gt;

&lt;span class=&#34;err&#34;&gt;#&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;MyTest_TableCssId&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;tr&lt;/span&gt;

&lt;span class=&#34;err&#34;&gt;#&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;MyTest_TableCssId&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;col&lt;/span&gt;

&lt;span class=&#34;err&#34;&gt;#&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;MyTest_TableCssId&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;br&lt;/span&gt;

&lt;span class=&#34;n&#34;&gt;etc&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;以下のスクリーンショットは、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#TableCssId&#34;&gt;&lt;strong&gt;HtmlSaveOptions.TableCssId&lt;/strong&gt;&lt;/a&gt;プロパティの使用による出力HTMLに対する効果を示しています。&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;prefix-table-elements-styles-with-htmlsaveoptions-tablecssid-property_1.png&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;h2 id=&#34;htmlsaveoptionstablecssidプロパティの使用方法についてのサンプルコードを以下に説明します参照のためにコードによって生成されたoutput-html60489791zipを確認してください&#34;&gt;&lt;strong&gt;HtmlSaveOptions.TableCssIdプロパティの使用方法についてのサンプルコードを以下に説明します。参照のために、コードによって生成された&lt;a href=&#34;60489791.zip&#34;&gt;output HTML&lt;/a&gt;を確認してください。&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;次のサンプルコードでは、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#TableCssId&#34;&gt;&lt;strong&gt;HtmlSaveOptions.TableCssId&lt;/strong&gt;&lt;/a&gt; プロパティを使用する方法について説明しています。参照のために、以下のコードによって生成された &lt;a href=&#34;60489791.zip&#34;&gt;出力HTML&lt;/a&gt; をご覧ください。&lt;/p&gt;
&lt;h2 id=&#34;サンプルコード&#34;&gt;&lt;strong&gt;サンプルコード&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=HTML-PrefixTableElementsStylesWithHtmlSaveOptions_TableCssIdProperty.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: StreamProviderを使用してHTMLを保存する</title>
      <link>https://docs.aspose.com/cells/ja/java/convert-excel-to-html-with-streamprovider/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/convert-excel-to-html-with-streamprovider/</guid>
      <description>
        
        
        

&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;p&gt;画像やシェイプを含むエクセルファイルをHTMLファイルに変換する際に、次の2つの問題に直面することがよくあります：&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;HTMLストリームにエクセルファイルを保存する際、画像やシェイプをどこに保存すべきか&lt;/li&gt;
&lt;li&gt;デフォルトのパスを期待されるパスに置き換える&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;この記事では&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/IStreamProvider&#34;&gt;&lt;strong&gt;IStreamProvider&lt;/strong&gt;&lt;/a&gt; インターフェースを実装して、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#StreamProvider&#34;&gt;&lt;strong&gt;HtmlSaveOptions.StreamProvider&lt;/strong&gt;&lt;/a&gt;プロパティを設定する方法について説明しています。このインターフェースを実装することで、HTML生成中に作成されたリソースを特定の場所やメモリーストリームに保存することができます。&lt;/p&gt;

&lt;/div&gt;

&lt;h2 id=&#34;サンプルコード&#34;&gt;サンプルコード&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#StreamProvider&#34;&gt;&lt;strong&gt;HtmlSaveOptions.StreamProvider&lt;/strong&gt;&lt;/a&gt; プロパティの使用方法を示すメインコードです&lt;/p&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-main-java-com-aspose-cells-examples-articles-HtmlSaveOptions-HtmlSaveOptions.java&#34;&gt;&lt;/script&gt;

&lt;p&gt;以下のコードは、上記のコード内で使用される&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/IStreamProvider&#34;&gt;&lt;strong&gt;IStreamProvider&lt;/strong&gt;&lt;/a&gt; インターフェースを実装した&lt;em&gt;ExportStreamProvider&lt;/em&gt;クラスのものです&lt;/p&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-main-java-com-aspose-cells-examples-articles-ExportStreamProvider-ExportStreamProvider.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;


      </description>
    </item>
    
    <item>
      <title>Java: 自己クロージングタグを認識する</title>
      <link>https://docs.aspose.com/cells/ja/java/recognise-self-closing-tags/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/recognise-self-closing-tags/</guid>
      <description>
        
        
        &lt;p&gt;HTML can have variety of tags formatting for empty tags like &amp;lt;td&amp;gt;&amp;lt;/td&amp;gt; or &amp;lt;td/&amp;gt;. Aspose.Cells supports both these formats now whereas earlier it was supporting only &amp;lt;td&amp;gt;&amp;lt;/td&amp;gt; like tags. This feature can be tested by converting the attached sample HTML file to Excel file. The sample HTML file and output files can be downloaded from the following links for testing.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;74776600&#34;&gt;sampleSelfClosingTags.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;74776601.xlsx&#34;&gt;outsampleSelfClosingTags.xlsx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-AsposeCellsExamples-HTML-RecognizeSelfClosingTags-1.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: emやパーセントなどのスケーラブルユニットに列の幅を設定する</title>
      <link>https://docs.aspose.com/cells/ja/java/set-column-width-to-scalable-unit-like-em-or-percent/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/set-column-width-to-scalable-unit-like-em-or-percent/</guid>
      <description>
        
        
        &lt;p&gt;スプレッドシートからHTMLファイルを生成するのは一般的です。列のサイズは多くの場合&amp;quot;pt&amp;quot;で定義されていますが、固定サイズが必要ではない場合があります。例えば、HTMLページが表示されるコンテナパネルの幅が600pxである場合。この場合、生成されたテーブルの幅が大きいと水平スクロールバーが表示される可能性があります。より良い表現を得るためには、この固定サイズをemやパーセントなどのスケーラブルユニットに変更する必要があります。次のサンプルコードでは、&lt;strong&gt;true&lt;/strong&gt;に設定された&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#WidthScalable&#34;&gt;&lt;strong&gt;HtmlSaveOptions.WidthScalable&lt;/strong&gt;&lt;/a&gt;が使用されます。&lt;/p&gt;
&lt;p&gt;サンプルのソースファイルと出力ファイルは以下のリンクからダウンロードできます：&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;74776596.xlsx&#34;&gt;sampleForScalableColumns.xlsx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;74776597.zip&#34;&gt;outsampleForScalableColumns.zip&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=HTML-SetScalableColumnWidth.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: 出力HTML内の文字列をHtmlCrossTypeを使用してクロスする方法を指定</title>
      <link>https://docs.aspose.com/cells/ja/java/specify-how-to-cross-string-in-output-html-using-htmlcrosstype/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/specify-how-to-cross-string-in-output-html-using-htmlcrosstype/</guid>
      <description>
        
        
        &lt;h2 id=&#34;可能な使用シナリオ&#34;&gt;&lt;strong&gt;可能な使用シナリオ&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;セルにはテキストまたは文字列が含まれていますが、セルの幅よりも大きい場合、次の列の次のセルがヌルまたは空の場合に文字列がオーバーフローします。 ExcelファイルをHTMLに保存すると、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/HtmlCrossType&#34;&gt;&lt;strong&gt;HtmlCrossType&lt;/strong&gt;&lt;/a&gt;列挙型を使用してこのオーバーフローを制御できます。次の値があります。&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlcrosstype#DEFAULT&#34;&gt;&lt;strong&gt;HtmlCrossType.DEFAULT&lt;/strong&gt;&lt;/a&gt;: MS Excelのように表示しますが、次のセルに依存します。次のセルがnullの場合、文字列はクロスされるか、切り捨てられます。&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlcrosstype#MS-EXPORT&#34;&gt;&lt;strong&gt;HtmlCrossType.MS_EXPORT&lt;/strong&gt;&lt;/a&gt;: MS ExcelのHTMLエクスポートのように文字列を表示します。&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlcrosstype#CROSS&#34;&gt;&lt;strong&gt;HtmlCrossType.CROSS&lt;/strong&gt;&lt;/a&gt;: HTMLクロス文字列を表示し、大きなHTMLファイルの作成のパフォーマンスは&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlcrosstype#DEFAULT&#34;&gt;&lt;strong&gt;DEFAULT&lt;/strong&gt;&lt;/a&gt;または&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlcrosstype#FIT-TO-CELL&#34;&gt;&lt;strong&gt;FIT_TO_CELL&lt;/strong&gt;&lt;/a&gt;の値を設定するよりも10倍速くなります。&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlcrosstype#CROSS-HIDE-RIGHT&#34;&gt;&lt;strong&gt;HtmlCrossType.CROSS_HIDE_RIGHT&lt;/strong&gt;&lt;/a&gt;: HTMLクロス文字列を表示し、テキストが重なる場合は右側の文字列を非表示にします。&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlcrosstype#FIT-TO-CELL&#34;&gt;&lt;strong&gt;HtmlCrossType.FIT_TO_CELL&lt;/strong&gt;&lt;/a&gt;: セルの幅内で文字列のみを表示します。&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;出力html内の文字列をhtmlcrosstypeを使用してクロスする方法を指定&#34;&gt;&lt;strong&gt;出力HTML内の文字列をHtmlCrossTypeを使用してクロスする方法を指定&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;次のサンプルコードは、異なる&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/HtmlCrossType&#34;&gt;&lt;strong&gt;HtmlCrossType&lt;/strong&gt;&lt;/a&gt;を指定して&lt;a href=&#34;51740747.xlsx&#34;&gt;sample Excel file&lt;/a&gt;をロードし、HTML形式で保存します。このコードで生成された&lt;a href=&#34;51740745.zip&#34;&gt;出力HTMLファイル&lt;/a&gt;をダウンロードしてください。サンプルExcelファイルにはこのスクリーンショットに示されているように赤色で枠線を引いた画像が含まれています。&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;specify-how-to-cross-string-in-output-html-using-htmlcrosstype_1.png&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;h2 id=&#34;サンプルコード&#34;&gt;&lt;strong&gt;サンプルコード&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-AsposeCellsExamples-LoadingSavingConvertingAndManaging-SpecifyHtmlCrossTypeInOutputHTML.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: ツールチップ付きでExcelをHTMLに変換する</title>
      <link>https://docs.aspose.com/cells/ja/java/convert-excel-to-html-with-tooltip/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/convert-excel-to-html-with-tooltip/</guid>
      <description>
        
        
        &lt;h2 id=&#34;ツールチップ付きでexcelをhtmlに変換する&#34;&gt;&lt;strong&gt;ツールチップ付きでExcelをHTMLに変換する&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;生成されたHTMLでテキストが切り取られる場合があり、ホバーイベントで完全なテキストをツールチップとして表示したい場合があります。Aspose.Cellsは、この機能をサポートし、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#AddTooltipText&#34;&gt;&lt;strong&gt;HtmlSaveOptions.AddTooltipText&lt;/strong&gt;&lt;/a&gt;プロパティを提供しています。 &lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#AddTooltipText&#34;&gt;&lt;strong&gt;HtmlSaveOptions.AddTooltipText&lt;/strong&gt;&lt;/a&gt;プロパティを&lt;strong&gt;true&lt;/strong&gt;に設定すると、生成されたHTMLに完全なテキストがツールチップとして追加されます。&lt;/p&gt;
&lt;p&gt;次の画像は、生成されたHTMLファイル内のツールチップを示しています。&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;convert-excel-to-html-with-tooltip_1.jpg&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;p&gt;次のコードサンプルは、&lt;a href=&#34;AddTooltipToHtmlSample.xlsx&#34;&gt;ソースExcelファイル&lt;/a&gt;をロードし、ツールチップを追加した&lt;a href=&#34;AddTooltipToHtmlSample_out.zip&#34;&gt;出力HTMLファイル&lt;/a&gt;を生成します。&lt;/p&gt;
&lt;h2 id=&#34;サンプルコード&#34;&gt;サンプルコード&lt;/h2&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-AsposeCellsExamples-LoadingSavingConvertingAndManaging-ConvertExcelFileToHtmlWithTooltip-1.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: HTMLに保存する際にCSSを無効にする</title>
      <link>https://docs.aspose.com/cells/ja/java/disable-css-while-saving-to-html/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/disable-css-while-saving-to-html/</guid>
      <description>
        
        
        &lt;h2 id=&#34;可能な使用シナリオ&#34;&gt;&lt;strong&gt;可能な使用シナリオ&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Excelファイルを1ページのHTMLに保存すると、通常CSS要素はHTMLファイル内に埋め込まれ、HEADセクションに配置されます。メールの本文として貼り付ける場合、ほとんどのメールクライアントはCSS要素を除去し、正しくレンダリングされないことがあります。Aspose.Cellsのバージョン24.12では、任意でCSSを無効にできるオプションが導入されており、スタイルをHTML要素内に直接適用できるようになっています。メールの本文に設定したい場合は、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions/properties/#DisableCss&#34;&gt;&lt;strong&gt;HtmlSaveOptions.DisableCss&lt;/strong&gt;&lt;/a&gt;プロパティを&lt;strong&gt;true&lt;/strong&gt;に設定してください。&lt;/p&gt;
&lt;h2 id=&#34;html保存時にcssを無効にする&#34;&gt;&lt;strong&gt;HTML保存時にCSSを無効にする&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;以下のサンプルコードは、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions/properties/#DisableCss&#34;&gt;&lt;strong&gt;HtmlSaveOptions.DisableCss&lt;/strong&gt;&lt;/a&gt;プロパティの使用例を示しています。&lt;/p&gt;
&lt;h2 id=&#34;サンプルコード&#34;&gt;&lt;strong&gt;サンプルコード&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/88c9872508ec3150c552eb5155edf06e.js?file=Examples-java-HTML-DisableCss-1.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: HTML保存時にCSSカスタムプロパティを有効にする方法を学びます。</title>
      <link>https://docs.aspose.com/cells/ja/java/enable-css-custom-properties-while-saving-to-html/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/enable-css-custom-properties-while-saving-to-html/</guid>
      <description>
        
        
        &lt;h2 id=&#34;可能な使用シナリオ&#34;&gt;&lt;strong&gt;可能な使用シナリオ&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;ExcelファイルをHTMLに保存する際、複数の場所で1つのbase64画像が出現する場合、カスタムプロパティを使用すれば画像データを一度だけ保存すればよいため、生成されるHTMLのパフォーマンスを向上させることができます。&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions/properties/#EnableCssCustomProperties&#34;&gt;&lt;strong&gt;HtmlSaveOptions.EnableCssCustomProperties&lt;/strong&gt;&lt;/a&gt;プロパティを使用し、HTMLに保存する際に&lt;strong&gt;true&lt;/strong&gt;に設定してください。
&lt;img src=&#34;enable-css-custom-properties-while-saving-to-html-1.jpg&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;h2 id=&#34;次のサンプルコードは0-属性の使用例を示していますこのプロパティがtrueに設定されていない場合の効果もスクリーンショットで示していますサンプルexcelファイル50528260xlsxと生成された出力html50528261zipをダウンロードして参照してください&#34;&gt;&lt;strong&gt;次のサンプルコードは、{0} 属性の使用例を示しています。このプロパティがTrueに設定されていない場合の効果もスクリーンショットで示しています。&lt;a href=&#34;50528260.xlsx&#34;&gt;サンプルExcelファイル&lt;/a&gt;と生成された&lt;a href=&#34;50528261.zip&#34;&gt;出力HTML&lt;/a&gt;をダウンロードして参照してください。&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;以下のサンプルコードは&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions/properties/#EnableCssCustompPoperties&#34;&gt;&lt;strong&gt;HtmlSaveOptions.EnableCssCustomProperties&lt;/strong&gt;&lt;/a&gt;プロパティの使用例を示しています。スクリーンショットは、このプロパティがtrueに設定されていない場合の効果を示しています。このコードで使用されている&lt;a href=&#34;50528260.xlsx&#34;&gt;サンプルExcelファイル&lt;/a&gt;と、それによって生成された&lt;a href=&#34;50528261.zip&#34;&gt;出力HTML&lt;/a&gt;を参考にしてください。&lt;/p&gt;
&lt;h2 id=&#34;サンプルコード&#34;&gt;&lt;strong&gt;サンプルコード&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/88c9872508ec3150c552eb5155edf06e.js?file=Examples-Java-HTML-%c2%b7java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: フレームスクリプトとドキュメントプロパティのエクスポートを無効にする</title>
      <link>https://docs.aspose.com/cells/ja/java/disable-exporting-frame-scripts-and-document-properties/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/disable-exporting-frame-scripts-and-document-properties/</guid>
      <description>
        
        
        

&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

Aspose.Cellsは、ワークブックをHTMLに変換する際にフレームスクリプトとドキュメントプロパティをエクスポートします。 Aspose.Cells for Javaの8.6.0バージョンでは、フレームスクリプトとドキュメントプロパティのエクスポートをオプションで無効にするためのオプションが導入されています。 &lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#ExportFrameScriptsAndProperties&#34;&gt;HtmlSaveOptions.setExportFrameScriptsAndProperties()&lt;/a&gt; プロパティを使用してエクスポートを無効にしてください。
&lt;/div&gt;

&lt;h2 id=&#34;フレームスクリプトとドキュメントプロパティのエクスポートを無効にする&#34;&gt;&lt;strong&gt;フレームスクリプトとドキュメントプロパティのエクスポートを無効にする&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;以下のサンプルコードを使用すると、フレームスクリプトとドキュメントプロパティのエクスポートを無効にできます。ワークブックをHTMLに変換すると、出力ファイルにフレームスクリプトとドキュメントプロパティは含まれません。&lt;/p&gt;
&lt;p&gt;以下にサンプルコードを示します。&lt;/p&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-main-java-com-aspose-cells-examples-articles-DisableExporting-DisableExporting.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: HTMLリンクのターゲットタイプを変更する</title>
      <link>https://docs.aspose.com/cells/ja/java/change-the-html-link-target-type/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/change-the-html-link-target-type/</guid>
      <description>
        
        
        

&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;p&gt;Aspose.Cellsでは、HTMLリンクのターゲットタイプを変更することができます。HTMLリンクは次のようになります。&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-java&#34; data-lang=&#34;java&#34;&gt; &lt;span class=&#34;o&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;a&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;href&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;http://www.aspose.com/&amp;#34;&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;target&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;_self&amp;#34;&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;&amp;gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;上記のHTMLリンクにおけるtarget属性が &lt;strong&gt;_self&lt;/strong&gt; になっています。&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#LinkTargetType&#34;&gt;HtmlSaveOptions.setLinkTargetType()&lt;/a&gt;プロパティを使用してこのtarget属性を制御できます。このプロパティは &lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/HtmlLinkTargetType&#34;&gt;HtmlLinkTargetType&lt;/a&gt; enumを取り、以下の値を持ちます。&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmllinktargettype#BLANK&#34;&gt;BLANK&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmllinktargettype#PARENT&#34;&gt;PARENT&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmllinktargettype#SELF&#34;&gt;SELF&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmllinktargettype#TOP&#34;&gt;TOP&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;

&lt;h2 id=&#34;htmlリンクのターゲットタイプを変更する&#34;&gt;&lt;strong&gt;HTMLリンクのターゲットタイプを変更する&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#LinkTargetType&#34;&gt;HtmlSaveOptions.setLinkTargetType()&lt;/a&gt; プロパティの使用方法を以下のコードで説明しています。このコードはリンクのターゲットタイプを &lt;strong&gt;blank&lt;/strong&gt; に変更しています。デフォルトは &lt;strong&gt;parent&lt;/strong&gt; です。このコードを実行するためには&lt;a href=&#34;5472932.xlsx&#34;&gt;ソースエクセルファイル&lt;/a&gt;を取得できますが、内部にHTMLハイパーリンクを含む任意のエクセルファイルを使用することができます。&lt;/p&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-main-java-com-aspose-cells-examples-articles-ChangeHTMLLinkTargetType-ChangeHTMLLinkTargetType.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: HTMLからの大きな数値の指数表記を避ける</title>
      <link>https://docs.aspose.com/cells/ja/java/avoid-exponential-notation-of-large-numbers-while-importing-from/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/avoid-exponential-notation-of-large-numbers-while-importing-from/</guid>
      <description>
        
        
        

&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

HTMLには 1234567890123456 のような15桁以上の長い数字が含まれることがあり、これらの数字をエクセルファイルにインポートすると、1.23457E+15 のように指数表記に変換されることがあります。もし、数値をそのままインポートし、指数表記に変換しないで欲しい場合は、HTMLをロードする際に&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlloadoptions#KeepPrecision&#34;&gt;HtmlLoadOptions.KeepPrecision&lt;/a&gt;プロパティを &lt;strong&gt;true&lt;/strong&gt; に設定してください。
&lt;/div&gt;

&lt;h2 id=&#34;htmlからの大きな数値の指数表記を避ける&#34;&gt;&lt;strong&gt;HTMLからの大きな数値の指数表記を避ける&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;次のサンプルコードは、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlloadoptions#KeepPrecision&#34;&gt;HtmlLoadOptions.KeepPrecision&lt;/a&gt;プロパティの使用方法を説明しています。これにより、指数表記に変換せずに数値をインポートします。&lt;/p&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-AsposeCellsExamples-TechnicalArticles-KeepPrecisionOfLargeNumbers-1.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: HTMLのインポート時に改行後の余分なスペースを削除する</title>
      <link>https://docs.aspose.com/cells/ja/java/delete-redundant-spaces-after-line-break-while-importing/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/delete-redundant-spaces-after-line-break-while-importing/</guid>
      <description>
        
        
        

&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlloadoptions#DeleteRedundantSpaces&#34;&gt;HtmlLoadOptions.DeleteRedundantSpaces&lt;/a&gt;プロパティを使用し、&lt;strong&gt;true&lt;/strong&gt;に設定してラインブレイクタグの後に出てくる余分なスペースをすべて削除してください。既定では、このプロパティは&lt;strong&gt;false&lt;/strong&gt;に設定されており、余分なスペースは出力Excelファイルに保持されます。
&lt;/div&gt;

&lt;h2 id=&#34;htmlloadoptionsdeleteredundantspacesプロパティをfalseとtrueに設定した場合の効果&#34;&gt;&lt;strong&gt;HtmlLoadOptions.DeleteRedundantSpaces プロパティをfalseとtrueに設定した場合の効果&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;このプロパティを&lt;strong&gt;false&lt;/strong&gt;と&lt;strong&gt;true&lt;/strong&gt;に設定した効果を以下のスクリーンショットで示します。&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;delete-redundant-spaces-after-line-break-while-importing-html_1.png&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;h2 id=&#34;htmlのインポート時に改行後の余分なスペースを削除する&#34;&gt;&lt;strong&gt;HTMLのインポート時に改行後の余分なスペースを削除する&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlloadoptions#DeleteRedundantSpaces&#34;&gt;HtmlLoadOptions.DeleteRedundantSpaces&lt;/a&gt;  プロパティの使用例を以下に示します。&lt;strong&gt;true&lt;/strong&gt;または&lt;strong&gt;false&lt;/strong&gt;に設定して、上記のスクリーンショットに表示される出力を取得してください。&lt;/p&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-AsposeCellsExamples-TechnicalArticles-DeleteRedundantSpacesFromHtml-1.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: Excel を HTML に変換する際の DataBar、ColorScale、および IconSet 条件付き書式をエクスポート</title>
      <link>https://docs.aspose.com/cells/ja/java/export-databar-colorscale-and-iconset-conditional-formatting-while-excel-to-html-conversion/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/export-databar-colorscale-and-iconset-conditional-formatting-while-excel-to-html-conversion/</guid>
      <description>
        
        
        

&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

Excel ファイルを HTML に変換する際に DataBar、ColorScale、および IconSet 条件付き書式をエクスポートできます。この機能は Microsoft Excel で部分的にサポートされていますが、Aspose.Cells では完全にサポートされています。
&lt;/div&gt;

&lt;h2 id=&#34;excel-を-html-に変換する際の-databarcolorscaleおよび-iconset-条件付き書式をエクスポート&#34;&gt;&lt;strong&gt;Excel を HTML に変換する際の DataBar、ColorScale、および IconSet 条件付き書式をエクスポート&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;次のスクリーンショットは DataBar、ColorScale、および IconSet 条件付き書式を含む&lt;a href=&#34;5473447.xlsx&#34;&gt;サンプル Excel ファイル&lt;/a&gt; を示しています。提供されたリンクから&lt;a href=&#34;5473447.xlsx&#34;&gt;サンプル Excel ファイル&lt;/a&gt;をダウンロードできます。&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;conversion_1.png&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;p&gt;次のスクリーンショットは Aspose.Cells の出力 HTML ファイルで DataBar、ColorScale、および IconSet 条件付き書式を示しています。&lt;a href=&#34;5473447.xlsx&#34;&gt;サンプル Excel ファイル&lt;/a&gt; とまったく同じように見えます。&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;conversion_2.png&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;h2 id=&#34;サンプルコード&#34;&gt;&lt;strong&gt;サンプルコード&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;次のサンプルコードは、サンプル Excel ファイルを HTML に変換する単なる&lt;a href=&#34;https://docs.aspose.com/cells/cells/ja/java/converting-workbook-to-different-formats/#convertingworkbooktodifferentformats-convertingexcelfilestohtml&#34;&gt;Excel を HTML に変換する方法&lt;/a&gt;です。&lt;/p&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-main-java-com-aspose-cells-examples-files-utility-ConvertingToHTMLFiles-1.java&#34;&gt;&lt;/script&gt;

&lt;h2 id=&#34;関連記事&#34;&gt;&lt;strong&gt;関連記事&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;

&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://docs.aspose.com/cells/cells/ja/java/converting-workbook-to-different-formats/#convertingworkbooktodifferentformats-convertingexcelfilestohtml&#34;&gt;ExcelファイルをHTMLに変換する&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: グリッドライン付きでExcelをHTMLにエクスポートする</title>
      <link>https://docs.aspose.com/cells/ja/java/export-excel-to-html-with-gridlines/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/export-excel-to-html-with-gridlines/</guid>
      <description>
        
        
        

&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

Excelファイルをグリッドライン付きでHTMLにエクスポートしたい場合は、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#ExportGridLines&#34;&gt;HtmlSaveOptions.ExportGridLines&lt;/a&gt;プロパティを使用して&lt;strong&gt;true&lt;/strong&gt;に設定してください。
&lt;/div&gt;

&lt;h2 id=&#34;グリッドライン付きでexcelをhtmlにエクスポートする&#34;&gt;&lt;strong&gt;グリッドライン付きでExcelをHTMLにエクスポートする&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;次のサンプルコードは、ワークブックを作成し、そのワークシートにいくつかの値を入力し、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#ExportGridLines&#34;&gt;HtmlSaveOptions.ExportGridLines&lt;/a&gt;を&lt;strong&gt;true&lt;/strong&gt;に設定した後、HTML形式で保存します。&lt;/p&gt;
&lt;p&gt;次のスクリーンショットは、このサンプルコードで生成された出力HTMLを示しています。この出力HTMLにはグリッド線も表示されています。&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;export-excel-to-html-with-gridlines_1.png&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-main-java-com-aspose-cells-examples-articles-ExportExceltoHTML-ExportExceltoHTML.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: HTMLをエクセルブックオブジェクトにロードする際にDIVタグのレイアウトをサポート</title>
      <link>https://docs.aspose.com/cells/ja/java/support-the-layout-of-div-tags-while-loading-html-to-excel-workbook/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/support-the-layout-of-div-tags-while-loading-html-to-excel-workbook/</guid>
      <description>
        
        
        

&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

通常、HTMLをエクセルブックオブジェクトにロードする際にDIVタグのレイアウトは無視されます。ただし、DIVタグのレイアウトを無視しない場合は、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlloadoptions#SupportDivTag&#34;&gt;HtmlLoadOptions.SupportDivTag&lt;/a&gt;プロパティを&lt;strong&gt;true&lt;/strong&gt;に設定してください。このプロパティのデフォルト値は&lt;strong&gt;false&lt;/strong&gt;です。
&lt;/div&gt;

&lt;h2 id=&#34;htmlをエクセルブックにロードする際にdivタグのレイアウトをサポート&#34;&gt;&lt;strong&gt;HTMLをエクセルブックにロードする際にDIVタグのレイアウトをサポート&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;次のサンプルコードは、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlloadoptions#SupportDivTag&#34;&gt;HtmlLoadOptions.SupportDivTag&lt;/a&gt; プロパティの使用方法を示しています。入力HTML内で使用されている&lt;a href=&#34;5473442.png&#34;&gt;Aspose Logo&lt;/a&gt;とコードによって生成された&lt;a href=&#34;5473439.xlsx&#34;&gt;出力エクセルファイル&lt;/a&gt;をダウンロードしてください。&lt;/p&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-AsposeCellsExamples-TechnicalArticles-SupportthelayoutofDIVtags-1.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: Excel ファイルを HTML にエクスポートする際にテキストを右から左に展開</title>
      <link>https://docs.aspose.com/cells/ja/java/expanding-text-from-right-to-left-while-exporting-excel-file-to/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/expanding-text-from-right-to-left-while-exporting-excel-file-to/</guid>
      <description>
        
        
        

&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

Aspose.Cells は、Excel ファイルを HTML にエクスポートする際にテキストを右から左に展開する機能を v8.9.0.0 以降でサポートしています。元の Excel ファイルに右から左に展開するテキストが含まれている場合、Aspose.Cells はそれを適切に HTML にエクスポートします。
&lt;/div&gt;

&lt;h2 id=&#34;excel-ファイルを-html-にエクスポートする際にテキストを右から左に展開&#34;&gt;&lt;strong&gt;Excel ファイルを HTML にエクスポートする際にテキストを右から左に展開&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;次のサンプルコードは、&lt;a href=&#34;5472562.xlsx&#34;&gt;サンプル Excel ファイル&lt;/a&gt; を HTML に変換します。このスクリーンショットは、サンプル Excel が Microsoft Excel 2013 でどのように見えるかを示しています。&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;expanding-text-from-right-to-left-while-exporting-excel-file-to-html_1.png&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;p&gt;このスクリーンショットは、古いバージョンで生成された&lt;a href=&#34;5472570&#34;&gt;出力 HTML&lt;/a&gt;を示しています。&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;expanding-text-from-right-to-left-while-exporting-excel-file-to-html_2.png&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;p&gt;このスクリーンショットは、新しいバージョンで生成された&lt;a href=&#34;5472563&#34;&gt;出力 HTML&lt;/a&gt;を示しています。&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;expanding-text-from-right-to-left-while-exporting-excel-file-to-html_3.png&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;p&gt;スクリーンショットに示されるように、新しいバージョンでは右寄せされたテキストを Microsoft Excel と同様に適切に左に展開します。&lt;/p&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-main-java-com-aspose-cells-examples-files-utility-ExpandTextFromRightToLeftWhileExportingExcelFileToHTML-.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: HTMLにスプレッドシートをレンダリングする際のデフォルトフォントを設定する</title>
      <link>https://docs.aspose.com/cells/ja/java/set-default-font-while-rendering-spreadsheet-to/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/set-default-font-while-rendering-spreadsheet-to/</guid>
      <description>
        
        
        

&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

Aspose.Cellsを使用すると、スプレッドシートをHTMLにレンダリングする際のデフォルトフォントを設定できます。この目的のために、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#DefaultFontName&#34;&gt;HtmlSaveOptions.DefaultFontName&lt;/a&gt;を使用してください。このプロパティは、スプレッドシート内のいくつかのセルに無効または存在しないフォントがある場合に便利です。その場合、これらのセルは&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#DefaultFontName&#34;&gt;HtmlSaveOptions.DefaultFontName&lt;/a&gt;プロパティで指定されたフォントでレンダリングされます。
&lt;/div&gt;

&lt;h2 id=&#34;スプレッドシートをhtmlにレンダリングする際のデフォルトフォントを設定する&#34;&gt;&lt;strong&gt;スプレッドシートをHTMLにレンダリングする際のデフォルトフォントを設定する&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;次のサンプルコードは、ブックを作成し、最初のワークシートのセルB4にテキストを追加し、そのフォントを未知の/存在しないフォントに設定します。それからブックを異なるデフォルトフォント名（Courier New、Arial、Times New Romanなど）でHTML形式で保存します。&lt;/p&gt;
&lt;p&gt;スクリーンショットは、&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#DefaultFontName&#34;&gt;HtmlSaveOptions.DefaultFontName&lt;/a&gt;プロパティを介して異なるデフォルトフォント名を設定した効果を示しています。&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;set-default-font-while-rendering-spreadsheet-to-html_1.png&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;p&gt;このコードは、Courier Newを使用した&lt;a href=&#34;5472568&#34;&gt;出力HTMLファイル&lt;/a&gt;、Arialを使用した&lt;a href=&#34;5472567&#34;&gt;出力HTML&lt;/a&gt;、およびTimes New Romanを使用した&lt;a href=&#34;5472565&#34;&gt;出力HTMLファイル&lt;/a&gt;を生成します。&lt;/p&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-main-java-com-aspose-cells-examples-files-utility-SetDefaultFontWhileRenderingSpreadsheetToHTML-.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: IFilePathProviderインターフェースを介してエクスポートされたワークシートのHTMLファイルパスを提供する</title>
      <link>https://docs.aspose.com/cells/ja/java/provide-exported-worksheet-html-file-path-via-ifilepathprovider-interface/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/provide-exported-worksheet-html-file-path-via-ifilepathprovider-interface/</guid>
      <description>
        
        
        &lt;h2 id=&#34;可能な使用シナリオ&#34;&gt;&lt;strong&gt;可能な使用シナリオ&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;例えば、複数のシートを持つエクセルファイルがあり、それぞれのシートを個別のHTMLファイルにエクスポートしたいとします。もし、いくつかのシートに他のシートへのリンクがある場合、そのリンクはエクスポートされたHTMLでは壊れた状態になります。この問題に対処するために、Aspose.Cellsは&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/IFilePathProvider&#34;&gt;IFilePathProvider&lt;/a&gt; インターフェースを提供しており、これを実装して壊れたリンクを修正できます。&lt;/p&gt;
&lt;h2 id=&#34;ifilepathproviderインターフェースを介してエクスポートされたワークシートのhtmlファイルパスを提供する&#34;&gt;&lt;strong&gt;IFilePathProviderインターフェースを介してエクスポートされたワークシートのHTMLファイルパスを提供する&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;以下のコードで使用された&lt;a href=&#34;5473417.zip&#34;&gt;サンプルエクセルファイル&lt;/a&gt;とそのエクスポートされたHTMLファイルをダウンロードしてください。これらのファイルはすべて&lt;em&gt;Temp&lt;/em&gt;ディレクトリ内にあります。それらを&lt;em&gt;C:&lt;em&gt;ドライブに解凍すれば&lt;/em&gt;C:\Temp&lt;/em&gt;ディレクトリになります。その後、ブラウザで&lt;em&gt;Sheet1.html&lt;/em&gt;ファイルを開き、それに含まれるリンクをクリックしてください。これらのリンクは&lt;em&gt;Sheet1.html&lt;/em&gt;内にあるこれらの2つのエクスポートされたHTMLワークシートを参照しています。これらのワークシートは&lt;em&gt;C:\Temp\OtherSheets&lt;/em&gt;ディレクトリ内にあります。&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-java&#34; data-lang=&#34;java&#34;&gt; &lt;span class=&#34;n&#34;&gt;file&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;c1&#34;&gt;///C:/Temp/OtherSheets/Sheet2.html#RANGE!A1
&lt;/span&gt;&lt;span class=&#34;c1&#34;&gt;&lt;/span&gt;&lt;span class=&#34;nl&#34;&gt;
&lt;/span&gt;&lt;span class=&#34;nl&#34;&gt;file:&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;///&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;C&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;:/&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;Temp&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;/&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;OtherSheets&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;/&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;Sheet3&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;na&#34;&gt;html&lt;/span&gt;&lt;span class=&#34;err&#34;&gt;#&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;RANGE&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;!&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;A1&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;以下のスクリーンショットは&lt;em&gt;C:\Temp\Sheet1.html&lt;/em&gt;とそのリンクの外観を示しています&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;provide-exported-worksheet-html-file-path-via-ifilepathprovider-interface_1.png&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;p&gt;以下のスクリーンショットはHTMLソースを示しています。リンクが&lt;em&gt;C:\Temp\OtherSheets&lt;/em&gt;ディレクトリを参照するように修正されたことがわかります。これは&lt;a href=&#34;https://reference.aspose.com/cells/java/com.aspose.cells/IFilePathProvider&#34;&gt;IFilePathProvider&lt;/a&gt; インターフェースを使用して達成されました。&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;provide-exported-worksheet-html-file-path-via-ifilepathprovider-interface_2.png&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;h2 id=&#34;サンプルコード&#34;&gt;&lt;strong&gt;サンプルコード&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;注意：&lt;em&gt;C:\Temp&lt;/em&gt;ディレクトリはイメージです。実行する前に、好きなディレクトリを使用し、&lt;a href=&#34;5473414.xlsx&#34;&gt;サンプルエクセルファイル&lt;/a&gt;をそのディレクトリに配置し、提供されたサンプルコード内の&lt;em&gt;dirPath&lt;/em&gt;変数を変更し、実行してください。それにより、指定したディレクトリ内に&lt;em&gt;OtherSheets&lt;/em&gt;サブディレクトリが作成され、その中に2番目と3番目のワークシートのHTMLがエクスポートされます。&lt;/p&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;

提供されたサンプルコードはAspose.Cellsライセンスを設定したときのみ動作します。ライセンスを設定せずにコードを実行しようとすると、無限ループに入ります。そのため、ライセンスが設定されていない場合にはメッセージを表示して実行を停止するチェックが追加されています。ライセンスを購入するか、Aspose.Purchaseチームから30日間の仮ライセンスをリクエストできます。
&lt;/div&gt;

&lt;p&gt;これらの行のコメントアウトを解除すると、&lt;em&gt;Sheet1.html&lt;/em&gt;のリンクが壊れ、&lt;em&gt;Sheet2.html&lt;/em&gt;または&lt;em&gt;Sheet3.html&lt;/em&gt;を&lt;em&gt;Sheet1.html&lt;/em&gt;内のリンクをクリックしても開くことができなくなります&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-java&#34; data-lang=&#34;java&#34;&gt; &lt;span class=&#34;c1&#34;&gt;//If you will comment this line, then hyperlinks will be broken
&lt;/span&gt;&lt;span class=&#34;c1&#34;&gt;&lt;/span&gt;
&lt;span class=&#34;n&#34;&gt;options&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;na&#34;&gt;setFilePathProvider&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;k&#34;&gt;new&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;FilePathProvider&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;());&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;提供された&lt;a href=&#34;5473414.xlsx&#34;&gt;サンプルエクセルファイル&lt;/a&gt;を使用して、以下の完全なサンプルコードを実行できます。&lt;/p&gt;
&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-main-java-com-aspose-cells-examples-files-handling-OpeningFilesThroughPath-1.java&#34;&gt;&lt;/script&gt;

&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-main-java-com-aspose-cells-examples-articles-FilePathProvider-FilePathProvider.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: スプレッドシートをHTMLに変換する際のWordArtのグラデーションフィルをレンダリング</title>
      <link>https://docs.aspose.com/cells/ja/java/render-gradient-fill-for-the-wordart-while-converting-spreadsheets-to/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://docs.aspose.com/cells/ja/java/render-gradient-fill-for-the-wordart-while-converting-spreadsheets-to/</guid>
      <description>
        
        
        &lt;h2 id=&#34;可能な使用シナリオ&#34;&gt;&lt;strong&gt;可能な使用シナリオ&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;以前は、Aspose.Cells APIはスプレッドシートをHTML形式に変換する際にWordArt形状のグラデーションフィルをレンダリングすることができませんでした。現在、Aspose.Cells APIではWordArt形状のグラデーションフィルをレンダリングする機能がサポートされています。以下のスクリーンショットは、以前のリリースと最近のリリースにおけるHTMLでのグラデーションフィルの効果を示しています。&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;render-gradient-fill-for-the-wordart-while-converting-spreadsheets-to-html_1.png&#34; alt=&#34;todo:image_alt_text&#34;&gt;&lt;/p&gt;
&lt;h2 id=&#34;スプレッドシートをhtmlに変換する際のwordartのグラデーションフィルをレンダリング&#34;&gt;&lt;strong&gt;スプレッドシートをHTMLに変換する際のWordArtのグラデーションフィルをレンダリング&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;以下のサンプルコードは、元のエクセルファイルを出力のHTML形式に変換します。元のエクセルファイルには上記のスクリーンショットに示されているようにグラデーションフィルを持つWordArtオブジェクトが含まれています。&lt;/p&gt;
&lt;h2 id=&#34;サンプルコード&#34;&gt;&lt;strong&gt;サンプルコード&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;&lt;script type=&#34;application/javascript&#34; src=&#34;https://gist.github.com/aspose-cells-gists/5876dc77e47649b66bdb5deefb4b5639.js?file=Examples-src-main-java-com-aspose-cells-examples-articles-RenderGradientFillHTML-RenderGradientFillHTML.java&#34;&gt;&lt;/script&gt;

&lt;button class=&#34;floating-button&#34; id=&#34;openModalBtn&#34;&gt;AI Document Assistant&lt;/button&gt;

&lt;div class=&#34;modal&#34; id=&#34;modal&#34;&gt;
    &lt;button class=&#34;close-btn&#34; id=&#34;closeModalBtn&#34;&gt;Close&lt;/button&gt;
    &lt;iframe src=&#34;https://products.aspose.ai/cells/chat/document/java?source=docs&#34; frameborder=&#34;0&#34; width=&#34;100%&#34; height=&#34;100%&#34;&gt;&lt;/iframe&gt;
&lt;/div&gt;

&lt;style&gt;
    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .modal {
        display: none;
        position: fixed;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background-color: white;
        border: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #f44336;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 3px;
    }
&lt;/style&gt;

&lt;script&gt;
    const openModalBtn = document.getElementById(&#39;openModalBtn&#39;);
    const closeModalBtn = document.getElementById(&#39;closeModalBtn&#39;);
    const modal = document.getElementById(&#39;modal&#39;);

    openModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;block&#39;;
    });

    closeModalBtn.addEventListener(&#39;click&#39;, function() {
        modal.style.display = &#39;none&#39;;
    });

    window.addEventListener(&#39;click&#39;, function(event) {
        if (event.target === modal) {
            modal.style.display = &#39;none&#39;;
        }
    });
&lt;/script&gt;
&lt;/p&gt;

      </description>
    </item>
    
  </channel>
</rss>
