Scenerio: Suppose you have to move millions of files from archive drive to some other drive after doing some manipulation like zipping some files together and all (this is different utility) with files in this case you want all the file list Answer: We are going to use Files.walk() cool feature came in Java 8 …
Category Archives: Uncategorized
Zipping the files utility
Servlet for Excel reporting
Reading from URL (GSON)
Sometimes in AEM there can be scenerio where you have to read from 3rd api/url and that data can be used as a dropdown or may be used in your front end sites . we have to cretae three classes mentioned below .last two classes is just for deserialization of Json. Apireading.java UniverseBean.java Results.java I …
Reading multifield dialog json
In AEM we use multifield dialog very often and oftenly we get into the situation where we have to read these stored multifield values.here in this post I will explain how you can read the multifield dialog values when multifield value is being stored as json like below: Dilaog would look similar like that..here I …
AEM dropdown
How to populate the drop down in aem dynamically there can be scenerio where you have to populate the dropdown dynamically . if we talk about classic UI static dropdwon implementation is very common we just have to create option node and need to put options text and values in dailog . but if you …