Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Aspose.Cells for Node.js via Java is platform-independent API and can be used on any platform (Windows, Linux and MacOS) where Node.js and node-java bridge are installed. The machine must have Oracle JDK 7 or greater versions before setting up the installation.
You can easily use Aspose.Cells for Node.js via Java from NPM with the following command.
$ npm install aspose.cellsIf you encounter any problems during the installation process, please refer to https://www.npmjs.com/package/java.
To install and use Aspose.Cells for Node.js via Java from a ZIP archive, follow the following instructions:
$ mkdir aspose.cells.js.java
$ cd aspose.cells.js.java
$ npm install java var aspose = aspose || {};
aspose.cells = require("aspose.cells");
var workbook = new aspose.cells.Workbook(aspose.cells.FileFormatType.XLSX);
workbook.getWorksheets().get(0).getCells().get("A1").putValue("testin...");
workbook.save("out1.xlsx");
console.log("hello world");Run below commands @ command prompt as an administrator(Make sure Java, Node.js, Python are configured):
> mkdir aspose.cells.js.java
\> cd aspose.cells.js.java
\> npm install -g node-gyp
\> npm install java
\> npm install aspose.cells var aspose = aspose || {};
aspose.cells = require("aspose.cells");
var workbook = new aspose.cells.Workbook(aspose.cells.FileFormatType.XLSX);
workbook.getWorksheets().get(0).getCells().get("A1").putValue("testin...");
workbook.save("out1.xlsx");
console.log("hello world"); <key>JavaVM</key>
<dict>
<key>JVMCapabilities</key>
<array>
<string>JNI</string>
<string>BundledApp</string>
<string>CommandLine</string>
</array> $ mkdir aspose.cells.js.java
$ cd aspose.cells.js.java
$ npm install java
var aspose = aspose || {};
aspose.cells = require("aspose.cells");
var workbook = new aspose.cells.Workbook(aspose.cells.FileFormatType.XLSX);
workbook.getWorksheets().get(0).getCells().get("A1").putValue("testin...");
workbook.save("out1.xlsx");
console.log("hello world");Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.