Bir çalışma sayfasına yazmadan özel işlevin doğrudan hesaplanması
Contents
[
Hide
]
Bu makalede, özel işlevlerinizi önce bir çalışma sayfasına yazmadan doğrudan nasıl hesaplayabileceğiniz açıklanmaktadır. lütfenWorksheet.calculateFormula(dize formülü, CalculationOptions tercihleri) yöntemi bu amaç için.
Bir çalışma sayfasına yazmadan özel işlevin doğrudan hesaplanması
Lütfen bu yöntemin kullanımını gösteren aşağıdaki örnek koda bakın. adlı özel bir işlev kullandık.*MyCompany.CustomFunction()*ve değerini “Aspose.Cells” olarak hesaplıyoruz. bu değer otomatik olarak A1 hücresinin “Hoş Geldiniz” değeri ile hesaplama motoru tarafından birleştirilir ve hesaplanan son değer “Aspose.Cells’e Hoş Geldiniz” olarak döner. Görüldüğü gibi bir çalışma tablosunda herhangi bir yere özel fonksiyonumuzu yazmadığımız ve doğrudan kendi özel mantığımızla hesaplanan bir koddur.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java | |
public class CustomEngine extends AbstractCalculationEngine | |
{ | |
// Override the Calculate method with custom logic | |
public void calculate(CalculationData data) | |
{ | |
// Check the forumla name and calculate it yourself | |
if (data.getFunctionName().equals("MyCompany.CustomFunction")) | |
{ | |
// This is our calculated value | |
data.setCalculatedValue("Aspose.Cells."); | |
} | |
} | |
} | |
public static void main(String[] args) throws Exception { | |
// Create a workbook | |
Workbook wb = new Workbook(); | |
// Accesss first worksheet | |
Worksheet ws = wb.getWorksheets().get(0); | |
// Add some text in cell A1 | |
ws.getCells().get("A1").putValue("Welcome to "); | |
// Create a calculation options with custom engine | |
CalculationOptions opts = new CalculationOptions(); | |
opts.setCustomEngine(new CustomEngine()); | |
// This line shows how you can call your own custom function without | |
// a need to write it in any worksheet cell | |
// After the execution of this line, it will return | |
// Welcome to Aspose.Cells. | |
Object ret = ws.calculateFormula("=A1 & MyCompany.CustomFunction()", opts); | |
// Print the calculated value on Console | |
System.out.println("Calculated Value: " + ret.toString()); | |
} |
Konsol Çıkışı
Aşağıda, yukarıdaki örnek kodun konsol çıktısı bulunmaktadır.
Calculated Value: Welcome to Aspose.Cells.