大專案中網頁多語系的維護方式
也許在許多專案上我們所說的Multi Language僅有繁體中文、簡體中文和英文,但在比較大型且跨國的專案上,可能會涉及更多的語言,例如:日文、俄文、德文、法文、西班牙文…等等,通常這些軟體內容的翻譯,需要經過更專業的單位來進行,也許這個單位不僅僅需要具備有這些國家的語言能力,也要具備有相當的軟體知識,才能配合當地民情翻譯出正確的文字,這部分往往需要專業的翻譯單位來進行。
而專業的翻譯單位通常並不具有軟體的製作能力,所以在軟體上要如何快速地進行協同作業,就變成一項非常重要的工作,而在許多專案上,我們會讓翻譯單位透過Excel來提供各國語系的翻譯文字,我們則透過軟體進行轉換,將其轉換至軟體能快速讀取的格式,講白一點就是將Excel檔案轉換成XML格式,並提供其他軟體進行讀取。
![](https://cloudlab.tw/wp/wp-content/uploads/2020/04/IMG_20200113_112309-1024x376-1.png)
整體流程會如上圖所示,在拿到一個翻譯社提供所有語系的Excel資料後,我們會進行轉換,將文字轉換成多個XML檔案,並打包成一個ZIP檔讓轉換者進行下載。
今天我們主要來分享上圖藍色部分的處理程序,也就是那一隻轉換程式的結構和做法,我們將轉換程式設計成網頁版本,藉此提升易用性,而轉換程式操作Flow大致如下:
- 使用者上傳檔案(限制僅能上傳Excel檔案)
- 給出ZIP下載連結(提供使用者下載所有語系的XML檔)
操作上非常簡單,僅有上述這兩個步驟,而程式設計上採用JSP架構其運作邏輯如下:
- 檢查上傳檔案的格式、容量及相關資訊
- 擷取Excel中第一張工作表(也可以依照工作表名稱擷取)
- 將Excel中第一列視為語系標題,並當作存檔名稱(例如:English.xml)
- 將剩下來的每一列轉換為該檔案的語系資料,並建立XML檔案
- 將所有建立好的XML檔案進行打包(ZIP)
- 更新頁面產生ZIP檔下載路徑
在該轉換程式中,另外有利用到下述的JAVA Library:
- Apache POI – 處理與解析Excel檔案
- DOM4J – 建立XML檔案
- Apache Commons – 處理檔案上傳
以下是轉換的程式碼:
<%@ page contentType="text/html; charset=UTF-8"%> <%@ page import="java.io.File"%> <%@ page import="java.text.*" %> <%@ page import="java.util.*" %> <%@ page import="java.util.Iterator"%> <%@ page import="java.util.List"%> <%@ page import="org.apache.commons.fileupload.*"%> <%@ page import="org.apache.commons.io.FilenameUtils"%> <%@ page import="java.util.zip.ZipEntry"%> <%@ page import="java.util.zip.ZipOutputStream"%> <%@ page import="java.io.FileInputStream"%> <%@ page import="java.io.FileOutputStream"%> <%@ page import="java.io.IOException"%> <%@ page import="java.io.OutputStreamWriter"%> <%@ page import="java.nio.charset.Charset"%> <%@ page import="org.apache.poi.hssf.usermodel.HSSFRow"%> <%@ page import="org.apache.poi.hssf.usermodel.HSSFSheet"%> <%@ page import="org.apache.poi.hssf.usermodel.HSSFWorkbook"%> <%@ page import="org.dom4j.io.OutputFormat"%> <%@ page import="org.dom4j.io.XMLWriter"%> <%@ page import="org.dom4j.Document"%> <%@ page import="org.dom4j.DocumentHelper"%> <%@ page import="org.dom4j.Element"%> <%! //允許上傳的檔案 String allowedFileTypes = ".xls"; //建立目錄 public void newFolder(String folderPath) { try { String filePath = folderPath; filePath = filePath.toString(); java.io.File myFilePath = new java.io.File(filePath); if (!myFilePath.exists()) { myFilePath.mkdir(); } } catch(Exception e) { System.out.println("建立目錄錯誤"); //e.printStackTrace(); } } // 轉換XLS為XML的主程式 ; 參數1.欲轉換的Excel工作表編號; 參數2.轉換的檔案路徑與檔名; 參數3.XML儲存的檔案路徑; public static String convertSheet(int sheetNumber, String conversionFile, String conversionXMLFilePath) { String convertStatus = "0"; // 輸出轉換狀態 ; 0 是失敗; 1是成功 String conversionXMLFileName = null; // XML檔名 String conversionXMLFile = null; // XML完整路徑與檔名 // 產生儲存XML檔案的資料夾 File file = new File(conversionXMLFilePath); if(!file.exists()){ file.mkdirs(); } // 開始讀取XLS檔案 HSSFWorkbook book = null; try { book = new HSSFWorkbook(new FileInputStream(conversionFile)); } catch (IOException e) { System.out.println("IOException : " + e); } HSSFSheet sheet = book.getSheetAt(sheetNumber); // 打開對應編號的工作表 HSSFRow row = sheet.getRow(0);// 取得工作表的第一列資料 String cell; int totalRows = sheet.getPhysicalNumberOfRows(); // 取得工作表中所有的列數 int totalCol = row.getPhysicalNumberOfCells(); // 取的工作表中所有的欄數 // 開始建立XML檔並將XLS內容建入 for (int j = 1; j < totalCol; j++){ Document document = DocumentHelper.createDocument(); Element root = document.addElement("root"); for (int i = 0; i < totalRows; i++){ row = sheet.getRow(i); try { cell = row.getCell(j).toString(); if(i==0) { conversionXMLFileName = cell; conversionXMLFile = conversionXMLFilePath + conversionXMLFileName + ".xml"; }else { root.addElement("row_" + (i+1)).addCDATA(cell); /* if(sheetNumber == 0) { root.addElement("tag_" + (i-1), cell); }else { root.addElement(xmlKeyboardTitle[(i-1)], cell); } */ } } catch (NullPointerException e) { break; } } File storedFile = new File(conversionXMLFile); if(storedFile.exists()) storedFile.delete(); FileOutputStream fos = null; OutputStreamWriter osw = null; XMLWriter writer = null; try { storedFile.createNewFile(); OutputFormat format = OutputFormat.createPrettyPrint(); format.setEncoding("utf-8"); fos = new FileOutputStream(storedFile); osw = new OutputStreamWriter(fos, Charset.forName("utf-8")); writer = new XMLWriter(osw, format); writer.write(document); } catch (IOException e) { System.out.println("IOException : " + e); } finally { try { if(writer != null) writer.close(); if(osw != null) osw.close(); if(fos != null) fos.close(); convertStatus = "1"; } catch (IOException e) { System.out.println("IOException : " + e); } } } return convertStatus; // 回覆轉換狀態 } List<String> filesListInDir = new ArrayList<String>(); public void zipDirectory(File dir, String zipDirName) { filesListInDir = new ArrayList<String>(); try { populateFilesList(dir); //now zip files one by one //create ZipOutputStream to write to the zip file FileOutputStream fos = new FileOutputStream(zipDirName); ZipOutputStream zos = new ZipOutputStream(fos); for(String filePath : filesListInDir){ System.out.println("Zipping "+filePath); //for ZipEntry we need to keep only relative file path, so we used substring on absolute path ZipEntry ze = new ZipEntry(filePath.substring(dir.getAbsolutePath().length()+1, filePath.length())); zos.putNextEntry(ze); //read the file and write to ZipOutputStream FileInputStream fis = new FileInputStream(filePath); byte[] buffer = new byte[1024]; int len; while ((len = fis.read(buffer)) > 0) { zos.write(buffer, 0, len); } zos.closeEntry(); fis.close(); } zos.close(); fos.close(); } catch (IOException e) { e.printStackTrace(); } } private void populateFilesList(File dir) throws IOException { File[] files = dir.listFiles(); for(File file : files){ if(file.isFile()) filesListInDir.add(file.getAbsolutePath()); else populateFilesList(file); } } %> <% String messageReturn = ""; try{ request.setCharacterEncoding("utf-8"); DiskFileUpload fileUpload = new DiskFileUpload(); List<FileItem> fileItems = fileUpload.parseRequest(request); FileItem fileItem = fileItems.get(0); //原始上傳檔案名稱 String originalFileName = fileItem.getName(); //out.print("originalFileName : " + originalFileName + "<br>"); if (originalFileName != null && !"".equals(originalFileName)) { originalFileName = FilenameUtils.getName(originalFileName); String extension = FilenameUtils.getExtension(originalFileName); //判斷檔案格式是否允許 //out.print("extension : " + extension + "<br>"); if (allowedFileTypes.indexOf(extension.toLowerCase()) != -1) { String filePath = this.getServletContext().getRealPath(request.getRequestURI().substring(request.getContextPath().length())); String savePath = new File(filePath).getParent() + "/upload"; //out.println("savePath = " + savePath + "<br>"); newFolder(savePath); String savePathAndName = savePath + "/" + originalFileName; //out.print(savePathAndName); File f = new File(savePathAndName); if(!f.exists()){ f.createNewFile(); } fileItem.write(f); //messageReturn += "File path : " + savePath + "<br>"; String xmlSavePath = savePath + "/xml/"; //messageReturn += "xmlSavePath : " + xmlSavePath + "<br>"; if("1".equals(convertSheet(0, savePathAndName , xmlSavePath))){ messageReturn += "File converted successfully.<br>"; }else{ messageReturn += "File conversion failed.<br>"; }; /* xmlSavePath = savePath + "/xml/keyboard/"; if("1".equals(convertSheet(1, savePathAndName , xmlSavePath))){ messageReturn += "Keyboard sheet conversion succeeded.<br>"; }else{ messageReturn += "Keyboard sheet conversion fail.<br>"; }; */ java.io.File myDelFile = new java.io.File(savePath + "/All.zip"); myDelFile.delete(); zipDirectory(new File(savePath + "/xml/"), savePath + "/All.zip"); messageReturn += "<a href='upload/All.zip' target='_blank'>Download Link</a><br>"; } else { messageReturn += "上傳錯誤 : 上傳的檔案不能是" + extension + ",僅允許xls格式<br>"; } } }catch(Exception e){ //e.printStackTrace(); } %> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>AIOT CC Multi-Language Convertion Tool</title> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"> <style> *{ font-family: 微軟正黑體; } h2{ text-align: center; } .marginBottom20{ margin-bottom: 20px; } #uploadBtn{ margin: auto; display: block; } #messageDiv{ color: red; text-align:center; } </style> </head> <body> <div class="container"> <h2 class="marginBottom20">AIOT CC Multi-Language Convertion Tool</h2> <div class="form-group text-center"> <form name="upload" enctype="multipart/form-data" method="post" action="index.jsp" onsubmit="return check_select()"> <input type="file" name="file" id="file" size="60" maxlength="20" placeholder="*.xls" class="marginBottom20"> <input id="uploadBtn" type="submit" value="轉換" class="btn btn-primary"> </form> </div> <div id="messageDiv"><% out.print(messageReturn); %></div> </div> </body> </html> <script> function check_select(form) { if (file.value == "") { alert("請選擇檔案"); return false; } else { // document.getElementById("uploadBtn").disabled = true; //document.getElementById("msgDiv").innerHTML = "檔案上傳中,請稍候"; return true; } } </script>
Стоимость дипломов высшего и среднего образования и процесс их получения
Five Killer Quora Answers On French Door Fridge On Sale french door fridge on sale
deneme bonusu veren siteler yeni: deneme bonusu veren siteler yeni – deneme bonusu veren siteler
tk 999 app tk 999 app .
slot casino siteleri slot casino siteleri en kazancl? slot oyunlar?
Understanding the Aave Protocol
The Aave Protocol is revolutionizing the decentralized finance (DeFi) space with its unique approach to crypto lending and borrowing. Whether you’re a seasoned investor or new to the world of cryptocurrencies, Aave offers a robust platform for managing your digital assets.
aave staking
What is Aave?
Aave, which means ‘ghost’ in Finnish, is a non-custodial liquidity protocol. It allows users to earn interest on deposits and borrow assets. Aave is known for its wide range of supported cryptocurrencies and features that enhance the security and flexibility of crypto transactions.
Key Features of Aave Protocol
Flash Loans: Aave introduced the concept of flash loans, which are borrowed and repaid within a single transaction. This feature is useful for arbitrage opportunities and collateral swaps.
Security: Aave is audited by leading blockchain security firms, ensuring the safety of user funds.
Rate Switching: Users can switch between stable and variable interest rates, offering flexibility based on market conditions.
Wide Asset Support: Aave supports multiple cryptocurrencies including Ethereum (ETH), DAI, and more.
How to Get Started with Aave
Getting started with Aave is straightforward:
Set Up a Wallet: Use a compatible crypto wallet like MetaMask.
Connect to Aave: Visit the Aave website and connect your wallet.
Deposit Crypto: Choose from supported cryptocurrencies to deposit into the Aave Protocol.
Start Earning or Borrowing: Once your crypto is deposited, you can start earning interest or borrowing assets instantly.
Advantages of Using Aave
There are several reasons why Aave stands out in the world of DeFi:
Non-Custodial: Users maintain control over their funds.
Highly Secure: Regular audits and community governance enhance security.
Innovative Products: Pioneering features like flash loans provide unparalleled opportunities.
In conclusion, the Aave Protocol offers a revolutionary platform for anyone looking to explore the potential of decentralized finance. Whether you’re earning interest or borrowing assets, Aave provides a secure and flexible experience.
рейтинг процессоров amd https://topcpu.ru/ .
Casino Siteleri: Deneme Bonusu Veren Siteler – Casino Siteleri
купить диплом ссср купить диплом образования
Maximizing Profits with 1inch Exchange
In the fast-paced world of cryptocurrency, every second counts. 1inch Exchange offers a powerful solution for traders looking to optimize their crypto transactions. By aggregating the best deals across various decentralized exchanges (DEXs), 1inch ensures users get the most value for their trades.
1inch dao
What is 1inch Exchange?
1inch Exchange is a decentralized exchange aggregator. It searches multiple DEXs to find the most efficient path for your trade, thus minimizing costs and maximizing returns. By splitting your transaction into parts and executing them across different platforms, 1inch achieves the best possible market rates.
Key Benefits of Using 1inch Exchange
Cost Efficiency: By seeking the best rates across multiple platforms, 1inch saves you money on each transaction.
Security: Operating on a decentralized network means that your assets are secure and you maintain control of your keys.
Liquidity: Access a vast pool of liquidity across numerous exchanges, ensuring that your trades are executed quickly and with minimal slippage.
How Does 1inch Work?
1inch deploys a sophisticated algorithm that splits your trade across multiple exchanges. This process uses smart contracts to ensure every part of the transaction is executed seamlessly and securely. 1inch’s pathfinder algorithm analyzes multiple liquidity sources within seconds to find the best exchange rates for your trade.
Getting Started with 1inch
Getting started with 1inch Exchange is easy. Follow these simple steps:
Visit the 1inch website and connect your digital wallet.
Select the token you wish to trade and the token you want to receive.
1inch displays the best available rates and allows you to execute the trade directly from the platform.
Conclusion
1inch Exchange is an invaluable tool for cryptocurrency traders looking to enhance their trading efficiency. By securing the best rates and offering robust security measures, 1inch stands out as a top choice for optimizing crypto swaps. Explore 1inch today and take your trading to the next level.
Aerodrome Finance: Unlocking Potential for Growth
The world of aerodrome finance is pivotal for ensuring the efficient operation, enhancement, and expansion of aerodrome facilities globally. With the increasing demand for air travel, understanding aerodrome financial processes is more important than ever.
Aerodrome fi
Why Aerodrome Finance Matters
Aerodrome finance plays a critical role in the lifespan of airport projects, providing necessary funding from initial development to ongoing management. Here are key reasons why it matters:
Infrastructure Development: Secure financial backing enables the construction and maintenance of essential airport infrastructure.
Operational Efficiency: Adequate funding ensures that airports can operate smoothly, adapting to technological advancements and logistical demands.
Economic Growth: Airports serve as economic hubs; their development stimulates job creation and boosts local economies.
Aerodrome Finance Strategies
Various strategies can be employed to optimize aerodrome finance, ensuring both immediate and long-term benefits. Here are a few notable approaches:
Public-Private Partnerships (PPP)
These partnerships combine public sector oversight and private sector efficiency, leading to shared risks and rewards. They facilitate diverse financial resources and innovative solutions for airport projects.
Revenue Diversification
Exploring non-aeronautical revenue streams, such as retail concessions and property leases, can significantly bolster an airport’s financial resilience. Such diversification allows for a steady income flow independent of ticket sales.
Sustainable Financing
Adopting sustainable financial practices, including green bonds and ESG (Environmental, Social, and Governance) criteria, aligns with modern ecological standards and attracts environmentally conscious investors.
Challenges and Opportunities
While aerodrome finance offers numerous benefits, it also poses certain challenges. High capital costs, regulatory hurdles, and fluctuating passenger demands can impact financial stability. However, these challenges also present opportunities for innovation and improvement.
Tech-Driven Solutions: Embracing technology like AI and predictive analytics can enhance decision-making and financial planning.
Collaboration: Strengthening ties with stakeholders, including airlines and government agencies, can streamline financial operations and capital investments.
Ultimately, the goal of aerodrome finance is to support the sustainable growth and modernization of airports, ensuring their pivotal role in global connectivity remains strong.
сравнение производительности процессоров http://topcpu.ru .
Base Bridge: Your Gateway to Seamless Asset Transfer
As the digital landscape expands, transferring assets across different blockchain networks has become increasingly important. Base Bridge offers a robust solution for managing digital assets efficiently and securely.
base bridge
What is Base Bridge?
Base Bridge is a cutting-edge platform designed to facilitate the seamless transfer of assets between different blockchain networks. By providing a bridge across these networks, users can enjoy enhanced connectivity and flexibility.
Key Features of Base Bridge
Interoperability: Connects multiple blockchain networks for seamless asset transfers.
Security: Ensures secure transactions with state-of-the-art encryption.
Speed: Fast transactions ensure access to funds without delays.
Benefits of Using Base Bridge
Whether you’re a developer, investor, or enthusiast, Base Bridge offers numerous benefits including:
Reduced Costs: Minimize fees associated with cross-chain transactions.
Broader Access: Gain access to a wider array of assets and networks.
User-Friendly Experience: Intuitive interface that caters to both novice and advanced users.
How to Get Started with Base Bridge
Embarking on your Base Bridge journey is straightforward:
Sign up on the .
Connect your digital wallet.
Choose the networks and assets you wish to transfer.
Execute transactions quickly and securely.
Base Bridge stands as a pillar in the future of digital asset management, paving the way for a more interconnected blockchain ecosystem. By leveraging Base Bridge, users can confidently navigate the complexities of digital asset exchanges.
Visit today to explore the full potential of your digital assets.
tk999 download tk999 download .
Реально ли приобрести диплом стоматолога? Основные этапы
https://empathycenter.ru/articles/ludomaniya-osobennosti-diagnostika-i-podkhody-k-lecheniyu/ – как избавиться от лудомании
Здравствуйте друзья. Этой статьёй я начинаю цикл статей о игровой зависимости или лудомании.
Phantom Wallet
Phantom Wallet offers secure storage for your crypto assets with a user-friendly interface. Get started and protect your investments today.
phantom extension
Why Choose Phantom Wallet for Your Cryptocurrency?
In the ever-evolving world of cryptocurrency, securing your digital assets is paramount. With numerous wallets available, choosing the right one can be daunting. Here’s why Phantom Wallet stands out:
User-Friendly Interface
Phantom Wallet is designed for both beginners and experienced traders. Its intuitive layout ensures easy navigation, making it simple to manage your digital assets efficiently.
Comprehensive Security Features
Your safety is a priority. Phantom Wallet employs state-of-the-art encryption and security protocols to protect your cryptocurrencies from unauthorized access.
Multi-Platform Accessibility
Access your wallet from multiple devices with ease. Phantom supports various operating systems, offering flexibility and convenience for all users.
Real-time Updates
Stay informed with instant notifications about your transactions and wallet activities. You can monitor your assets and market trends effortlessly.
Setting Up Phantom Wallet
Download the Phantom Wallet from the official website.
Create a secure password and back up your recovery phrase.
Start managing your cryptocurrencies seamlessly.
Advantages of Phantom Wallet
Fast Transactions: Experience lightning-fast transaction speeds, ensuring your trades are completed in seconds.
Low Fees: Benefit from competitive transaction fees, maximizing your returns.
Comprehensive Support: Access 24/7 customer support to assist you with any inquiries or issues.
Embrace the future of digital finance with . Secure, user-friendly, and reliable—it’s the smart choice for anyone serious about managing their cryptocurrency securely and effectively.
yeni deneme bonusu veren siteler denemebonusuverensiteler25 yat?r?ms?z deneme bonusu veren siteler
Аттестат школы купить официально с упрощенным обучением в Москве
купить диплом специалиста
Medical staff on the front line of the battle against mpox in eastern Democratic Republic of Congo have told the BBC they are desperate for vaccines to arrive so they can stem the rate of new infections.
[url=https://www.btrhbfeojofxcpxuwnsp5h7h22htohw4btqegnxatocbkgdlfiawhyid.net]СЃРїСЂСѓС‚[/url]
At a treatment centre in South Kivu province that the BBC visited in the epicentre of the outbreak, they say more patients are arriving every day – especially babies – and there is a shortage of essential equipment.
СЃРїСЂСѓС‚
https://www-bs2clear.com
Mpox – formerly known as monkeypox – is a highly contagious disease and has killed at least 635 people in DR Congo this year.
Even though 200,000 vaccines, donated by the European Commission, were flown into the capital, Kinshasa, last week, they are yet to be transported across this vast country – and it could be several weeks before they reach South Kivu.
“We’ve learned from social media that the vaccine is already available,” Emmanuel Fikiri, a nurse working at the clinic that has been turned into a specialist centre to tackle the virus, told the BBC.
He said this was the first time he had treated patients with mpox and every day he feared catching it and passing it on to his own children – aged seven, five and one.
“You saw how I touched the patients because that’s my job as a nurse. So, we’re asking the government to help us by first giving us the vaccines.”
The reason it will take time to transport the vaccines is that they need to be stored at a precise temperature – below freezing – to maintain their potency, plus they need to be sent to rural areas of South Kivu, like Kamituga, Kavumu and Lwiro, where the outbreak is rife.
The lack of infrastructure and bad roads mean that helicopters could possibly be used to drop some of the vaccines, which will further drive up costs in a country that is already struggling financially.
At the community clinic, Dr Pacifique Karanzo appeared fatigued and downbeat having been rushed off his feet all morning.
Although he wore a face shield, I could see the sweat running down his face. He said he was saddened to see patients sharing beds.
“You will even see that the patients are sleeping on the floor,” he told me, clearly exasperated.
“The only support we have already had is a little medicine for the patients and water. As far as other challenges are concerned, there’s still no staff motivation.”
[url=https://bs2tsite1-cc.com]блэк спрут[/url]
https://denemebonusuverensiteler25.com/# deneme bonusu veren siteler
The 9 Things Your Parents Teach You About Single Stroller For Sale single stroller For sale
купить диплом спб
15 Best Pinterest Boards Of All Time About Car Accident Attorneys Attorney for car
accidents near me [http://www.louloumc.com/home.php?mod=space&uid=1838044]
deneme bonusu veren yeni siteler: deneme bonusu veren siteler – yeni deneme bonusu veren siteler
Incontestable Evidence That You Need Cheap Cot Bed cheap cot beds; Bradley,
http://denemebonusuverensiteler25.com/# deneme bonusu veren siteler
диплом в казани купить
canl? casino siteleri: guvenilir casino siteleri – Casino Siteleri