“XML Tools”->"pretty print""/> “XML Tools”->"pretty print"">
最近在進行hbase設定檔的修改之後,發現xml檔的格式很不美觀,然後,在網路上找了些方法,實測,透過notepad 的xml tools外掛就可達到美化效果。
操作過程:(推薦學習:notepad )
#1.以下為原始xml檔案的格式效果
<configuration><property><name>hbase.rootdir</name><value>file:///root/hbase-data/hbase</value></property><property><br><name>hbase.cluster.distributed</name><value>true</value></property><property><name>hbase.zookeeper.quorum</name><br><value>redhat6,standby,hadoop3</value></property><property><name>hbase.zookeeper.property.dataDir</name><value>/opt/hbase-1.3.0/tmp/zk/data</value><br></property><property><name>hbase.regionserver.wal.codec</name><value>org.apache.hadoop.hbase.regionserver.wal.IndexedWALEditCodec</value></property><property><br><name>hbase.region.server.rpc.scheduler.factory.class</name><value>org.apache.hadoop.hbase.ipc.PhoenixRpcSchedulerFactory</value><br><description>Factory to create the Phoenix RPC Scheduler that uses separate queues for index and metadata updates</description></property><property><br><name>hbase.rpc.controllerfactory.class</name><value>org.apache.hadoop.hbase.ipc.controller.ServerRpcControllerFactory</value><br><description>Factory to create the Phoenix RPC Scheduler that uses separate queues for index and metadata updates</description></property></configuration><br>
備註:發現很不美觀。
2.將上述內容放入一個文件中,點選notepad 工具頂部上的"插件(P)"->「XML Tools」->"pretty print(XML only -with line breaks)"
修改後效果如下:
<configuration><br> <property><br> <name>hbase.rootdir</name><br> <value>file:///root/hbase-data/hbase</value><br> </property><br> <property><br> <name>hbase.cluster.distributed</name><br> <value>true</value><br> </property><br> <property><br> <name>hbase.zookeeper.quorum</name><br> <value>redhat6,standby,hadoop3</value><br> </property><br> <property><br> <name>hbase.zookeeper.property.dataDir</name><br> <value>/opt/hbase-1.3.0/tmp/zk/data</value><br> </property><br> <property><br> <name>hbase.regionserver.wal.codec</name><br> <value>org.apache.hadoop.hbase.regionserver.wal.IndexedWALEditCodec</value><br> </property><br> <property><br> <name>hbase.region.server.rpc.scheduler.factory.class</name><br> <value>org.apache.hadoop.hbase.ipc.PhoenixRpcSchedulerFactory</value><br> <description>Factory to create the Phoenix RPC Scheduler that uses separate queues for index and metadata updates</description><br> </property><br> <property><br> <name>hbase.rpc.controllerfactory.class</name><br> <value>org.apache.hadoop.hbase.ipc.controller.ServerRpcControllerFactory</value><br> <description>Factory to create the Phoenix RPC Scheduler that uses separate queues for index and metadata updates</description><br> </property><br></configuration><br>
注意:如果notepad 不存在XML Tools插件,則需要自行進行插件的下載和安裝。
以上是notepad++如何把混亂的xml格式化的詳細內容。更多資訊請關注PHP中文網其他相關文章!